Skip to content

Instantly share code, notes, and snippets.

@nitaku
Last active July 3, 2016 17:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nitaku/8272715 to your computer and use it in GitHub Desktop.
Save nitaku/8272715 to your computer and use it in GitHub Desktop.
Fractal treemap of Konanopii (1,724 leaves)

See this gist for the full code.

An example of an unambiguous fractal treemap. See this example discussing the unambiguous representation of unordered trees, and also this other example from which the random tree Konanopii (1,724 leaves) has been taken from.

ipython
run gosper_regions_depth.py
gosperify('konanopii_1724.json','/data/_workspace/hexes.wkt.csv','regions','depth.json')
Ctrl+D

topojson --cartesian --no-quantization -p depth -p label -o regions_depth.topo.json depth.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

gosper_regions_depth.py produces both the treemap's regions and depth levels as GeoJSON (then converted into TopoJSON as usual). A python generator is used to enumerate the leaves without creating a copy of them (similar to the code found in this StackOverflow question).

Only the first two levels are shown, to avoid cluttering. Labels are naively placed at the centroid of the corresponding region, leading to unoptimal placement in many cases (e.g. "Sebo").

The color scale, supporting trees with a maximum of ten levels, is adapted from Gretchen N. Peterson's Cartographer's Toolkit (page 40 - the scale have been reversed and blended with white). The font is Lacuna, by Peter Hoffmann, and was chosen because of its good readability at small sizes.

The halo around labels is implemented with a SASS mixin that defines multiple text-shadows. White blending leverages the possibility of leaving the hue of white undefined in d3's HCL representation, producing a correct HCL interpolation (see this discussion for more info).

from __future__ import print_function
from itertools import izip
import csv
import json
from shapely.geometry.polygon import Polygon
import shapely.wkt
from fiona import collection
from shapely.geometry import mapping
import re
import os
# yield the leaves of the tree, also computing each leaf path
def leafify(node, path=()):
if 'c' not in node:
node['path'] = path + (node,)
yield node
else:
for c in node['c']:
for l in leafify(c, path + (node,)):
yield l
def gosperify(tree_path, hexes_path, output_regions_dir_path, depth_filename):
leaves_done = 0
layers = {}
depth_levels = {}
print('Reading the tree...')
with open(tree_path, 'rb') as tree_file:
tree = json.loads(tree_file.read())
print('Reading hexes...')
# iterate over the hexes taken from the file
with open(hexes_path, 'rb') as hexes_file:
hexes_reader = csv.reader(hexes_file, delimiter=';', quotechar='#')
for leaf, hexes_row in izip(leafify(tree), hexes_reader):
path = leaf['path']
hex = shapely.wkt.loads(hexes_row[0])
for depth in xrange(len(path)):
# add the hex to its political regions
ancestor_or_self = path[depth]
if depth not in layers:
layers[depth] = {}
if id(ancestor_or_self) not in layers[depth]:
layers[depth][id(ancestor_or_self)] = {
'geometry': hex,
'node': ancestor_or_self
}
else:
layers[depth][id(ancestor_or_self)]['geometry'] = layers[depth][id(ancestor_or_self)]['geometry'].union(hex)
# add the hex to all the depth levels with d <= depth
if depth not in depth_levels:
depth_levels[depth] = hex
else:
depth_levels[depth] = depth_levels[depth].union(hex)
# logging
leaves_done += 1
print('%d leaves done' % leaves_done, end='\r')
print('Writing political regions...')
schema = {'geometry': 'Polygon', 'properties': {'label': 'str'}}
if not os.path.exists(output_regions_dir_path):
os.makedirs(output_regions_dir_path)
for depth, regions in layers.items():
with collection(output_regions_dir_path+'/'+str(depth)+'.json', 'w', 'GeoJSON', schema) as output:
for _, region_obj in regions.items():
output.write({
'properties': {
'label': region_obj['node']['l']
},
'geometry': mapping(region_obj['geometry'])
})
print('Writing depth_levels...')
schema = {'geometry': 'Polygon', 'properties': {'depth': 'int'}}
with collection(depth_filename, 'w', 'GeoJSON', schema) as output:
for depth, region in depth_levels.items():
output.write({
'properties': {
'depth': depth
},
'geometry': mapping(region)
})
concat = (a) -> a.reduce ((a,o) -> a.concat(o)), []
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(560, 54)')
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 = 6
dx = radius * 2 * Math.sin(Math.PI / 3)
dy = radius * 1.5
path_generator = d3.geo.path()
.projection d3.geo.transform({
point: (x,y) ->
this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2)
})
### depth scale ###
whiteness = 0.6
whiten = (color) -> d3.interpolateHcl(color, d3.hcl(undefined,0,100))(whiteness)
colorify = d3.scale.quantize()
.domain([0..9])
.range(['#396353','#0DB14B','#6DC067','#ABD69B','#DAEAC1','#DFCCE4','#C7B2D6','#9474B4','#754098','#504971'].map(whiten))
# .range(['#59A80F','#9ED54C','#C4ED68','#E2FF9E','#F0F2DD','#F8CA8C','#E9A189','#D47384','#AC437B','#8C286E'])
# .range(['#FFFCF6','#FFF7DB','#FFF4C2','#FEECAE','#F8CA8C','#F0A848','#C07860','#A86060','#784860','#604860'])
### legend ###
legend = svg.append('g')
.attr('id','legend')
.attr('transform', 'translate(30,20)')
scale = [colorify.domain()[0]..colorify.domain()[1]]
categories = legend.selectAll('.category')
.data(scale)
.enter().append('g')
.attr('class', 'category')
.attr('transform', (d,i) -> "translate(0,#{i*22})")
categories.append('rect')
.attr('x', 0).attr('y', 0)
.attr('width', 22).attr('height', 22)
.attr('fill', (d) -> colorify(d))
categories.append('text')
.attr('y', 11)
.attr('dx', -4)
.attr('dy', '0.35em')
.text((d) -> d)
### load topoJSON data ###
d3.json 'regions_depth.topo.json', (error, data) ->
### write the name of the land ###
title = svg.append('text')
.attr('class', 'title')
.text(topojson.feature(data, data.objects['0']).features[0].properties.label)
.attr('transform', 'translate(80,40)')
### define the level zero region (the land) ###
defs = svg.append('defs')
defs.append('path')
.datum(topojson.feature(data, data.objects['0']).features[0])
.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')
### draw the depth levels ###
vis.selectAll('.contour')
.data(topojson.feature(data, data.objects.depth).features)
.enter().append('path')
.attr('class', 'contour')
.attr('d', path_generator)
.attr('fill', (d) -> colorify(d.properties.depth))
### draw the political boundaries ###
for depth in [1..2]
vis.append('path')
.datum(topojson.mesh(data, data.objects[depth], ((a,b) -> a isnt b)))
.attr('d', path_generator)
.attr('class', 'boundary')
.style('stroke-width', "#{1.8/depth}px")
### draw the land border ###
vis.append('use')
.attr('class', 'land-fill')
.attr('xlink:href', '#land')
### draw the other labels ###
vis.selectAll('.label')
.data(concat((topojson.feature(data, data.objects[depth]).features.map((d) -> {feature: d, depth: depth}) for depth in [2..1])))
.enter().append('text')
.attr('class', 'label')
.attr('dy','0.35em')
.attr('transform', ((d) ->
centroid = path_generator.centroid(d.feature)
area = path_generator.area(d.feature)
return "translate(#{centroid[0]},#{centroid[1]}) scale(#{10/d.depth})"
))
.text((d) -> d.feature.properties.label)
#land {
fill: none;
}
.land-glow-outer {
stroke: #eeeeee;
stroke-width: 16px;
}
.land-glow-inner {
stroke: #dddddd;
stroke-width: 8px;
}
.land-fill {
stroke: #444444;
stroke-width: 2px;
}
.contour {
stroke: none;
}
.category text {
text-anchor: end;
fill: #444444;
font-family: sans-serif;
font-weight: bold;
font-size: 14px;
pointer-events: none;
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.boundary {
stroke: #444444;
fill: none;
pointer-events: none;
}
@font-face {
font-family: "Lacuna";
src: url("lacuna.ttf");
}
.label {
text-transform: capitalize;
text-anchor: middle;
font-size: 2.5px;
fill: #444444;
pointer-events: none;
font-family: "Lacuna";
text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white, -1px -1px white, 1px -1px white, 1px 1px white, -1px 1px white;
}
.title {
text-transform: capitalize;
text-anchor: start;
font-size: 24pt;
fill: #444444;
pointer-events: none;
font-family: "Lacuna";
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
.overlay {
fill: transparent;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fractal treemap - Konanopii (1,724)</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() {
var concat;
concat = function(a) {
return a.reduce((function(a, o) {
return a.concat(o);
}), []);
};
window.main = function() {
/* "globals"
*/
var categories, colorify, container, dx, dy, height, legend, path_generator, radius, scale, svg, vis, whiten, whiteness, width, _i, _ref, _ref2, _results;
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(560, 54)');
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 = 6;
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) {
return this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2);
}
}));
/* depth scale
*/
whiteness = 0.6;
whiten = function(color) {
return d3.interpolateHcl(color, d3.hcl(void 0, 0, 100))(whiteness);
};
colorify = d3.scale.quantize().domain([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]).range(['#396353', '#0DB14B', '#6DC067', '#ABD69B', '#DAEAC1', '#DFCCE4', '#C7B2D6', '#9474B4', '#754098', '#504971'].map(whiten));
/* legend
*/
legend = svg.append('g').attr('id', 'legend').attr('transform', 'translate(30,20)');
scale = (function() {
_results = [];
for (var _i = _ref = colorify.domain()[0], _ref2 = colorify.domain()[1]; _ref <= _ref2 ? _i <= _ref2 : _i >= _ref2; _ref <= _ref2 ? _i++ : _i--){ _results.push(_i); }
return _results;
}).apply(this);
categories = legend.selectAll('.category').data(scale).enter().append('g').attr('class', 'category').attr('transform', function(d, i) {
return "translate(0," + (i * 22) + ")";
});
categories.append('rect').attr('x', 0).attr('y', 0).attr('width', 22).attr('height', 22).attr('fill', function(d) {
return colorify(d);
});
categories.append('text').attr('y', 11).attr('dx', -4).attr('dy', '0.35em').text(function(d) {
return d;
});
/* load topoJSON data
*/
return d3.json('regions_depth.topo.json', function(error, data) {
/* write the name of the land
*/
var defs, depth, title;
title = svg.append('text').attr('class', 'title').text(topojson.feature(data, data.objects['0']).features[0].properties.label).attr('transform', 'translate(80,40)');
/* define the level zero region (the land)
*/
defs = svg.append('defs');
defs.append('path').datum(topojson.feature(data, data.objects['0']).features[0]).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');
/* draw the depth levels
*/
vis.selectAll('.contour').data(topojson.feature(data, data.objects.depth).features).enter().append('path').attr('class', 'contour').attr('d', path_generator).attr('fill', function(d) {
return colorify(d.properties.depth);
});
/* draw the political boundaries
*/
for (depth = 1; depth <= 2; depth++) {
vis.append('path').datum(topojson.mesh(data, data.objects[depth], (function(a, b) {
return a !== b;
}))).attr('d', path_generator).attr('class', 'boundary').style('stroke-width', "" + (1.8 / depth) + "px");
}
/* draw the land border
*/
vis.append('use').attr('class', 'land-fill').attr('xlink:href', '#land');
/* draw the other labels
*/
return vis.selectAll('.label').data(concat((function() {
var _results2;
_results2 = [];
for (depth = 2; depth >= 1; depth--) {
_results2.push(topojson.feature(data, data.objects[depth]).features.map(function(d) {
return {
feature: d,
depth: depth
};
}));
}
return _results2;
})())).enter().append('text').attr('class', 'label').attr('dy', '0.35em').attr('transform', (function(d) {
var area, centroid;
centroid = path_generator.centroid(d.feature);
area = path_generator.area(d.feature);
return "translate(" + centroid[0] + "," + centroid[1] + ") scale(" + (10 / d.depth) + ")";
})).text(function(d) {
return d.feature.properties.label;
});
});
};
}).call(this);
@mixin halo($color)
text-shadow: -1px 0 $color, 0 1px $color, 1px 0 $color, 0 -1px $color
@mixin halo_double($color)
text-shadow: -2px 0 $color, 0 2px $color, 2px 0 $color, 0 -2px $color, -1px -1px $color, 1px -1px $color, 1px 1px $color, -1px 1px $color
#land
fill: none
.land-glow-outer
stroke: #EEE
stroke-width: 16px
.land-glow-inner
stroke: #DDD
stroke-width: 8px
.land-fill
stroke: #444
stroke-width: 2px
.contour
stroke: none
.category text
text-anchor: end
fill: #444
font-family: sans-serif
font-weight: bold
font-size: 14px
pointer-events: none
@include halo(white)
.boundary
stroke: #444
fill: none
// avoid blinking when hovering regions
pointer-events: none
@font-face
font-family: 'Lacuna'
src: url('lacuna.ttf')
.label
text-transform: capitalize
text-anchor: middle
font-size: 2.5px
fill: #444
pointer-events: none
font-family: 'Lacuna'
@include halo_double(white)
.title
text-transform: capitalize
text-anchor: start
font-size: 24pt
fill: #444
pointer-events: none
font-family: 'Lacuna'
@include halo(white)
// zoom and pan
.overlay
fill: transparent
{"c": [{"c": [{"c": [{"l": "fotrifle"}, {"l": "nasukyamana"}, {"c": [{"c": [{"c": [{"c": [{"l": "sukanenear"}, {"l": "pako"}, {"l": "espeesespa"}, {"l": "mabu"}], "l": "makyaesle"}, {"l": "zogotana"}, {"l": "goboes"}, {"l": "silusego"}, {"l": "sezonabo"}], "l": "boboobu"}, {"l": "suzoar"}, {"l": "fonesuine"}, {"l": "paar"}, {"l": "esbiesnofo"}, {"l": "flofopi"}, {"l": "arpeflesi"}], "l": "natase"}, {"l": "fleka"}], "l": "bukyuisu"}, {"c": [{"c": [{"l": "fuiflo"}, {"l": "nefo"}, {"c": [{"l": "pitabuta"}, {"l": "naanfose"}, {"l": "manopi"}, {"c": [{"l": "buesflo"}, {"l": "peio"}, {"l": "kyakyakofusu"}], "l": "zosibooar"}], "l": "angopapi"}, {"l": "fozo"}, {"c": [{"l": "lubosi"}], "l": "maflofle"}, {"l": "bifletao"}, {"c": [{"c": [{"l": "ine"}, {"l": "espaarbina"}, {"l": "arlutatama"}], "l": "ozono"}, {"c": [{"l": "kyatasuse"}], "l": "gokoan"}, {"l": "natasefono"}, {"l": "nazoko"}], "l": "tagofokakyu"}], "l": "netri"}, {"c": [{"l": "nape"}], "l": "netrimapene"}], "l": "anlelutaar"}, {"l": "bukopaselu"}], "l": "flokyutrizo"}, {"c": [{"c": [{"l": "fubioigo"}, {"c": [{"l": "suoneitri"}], "l": "lusubibu"}, {"c": [{"l": "funeannotri"}], "l": "zona"}, {"c": [{"l": "bokasupaes"}, {"l": "onogobopa"}, {"c": [{"l": "oflo"}, {"l": "nonolepa"}, {"l": "zofusibole"}, {"l": "isese"}, {"l": "floarlubifo"}, {"c": [{"l": "sisebifu"}, {"l": "pefose"}], "l": "zokyakya"}], "l": "kyamabisebu"}, {"c": [{"l": "fopa"}, {"c": [{"l": "kamaflearke"}, {"l": "nai"}, {"l": "bulemanolu"}, {"l": "sebokepeno"}], "l": "flopefuse"}, {"l": "letasu"}], "l": "manoozo"}, {"l": "sefu"}, {"l": "zokaarmalu"}], "l": "konoma"}, {"l": "lebies"}, {"c": [{"l": "anpilugo"}, {"c": [{"l": "lenekefuse"}, {"c": [{"l": "fleibigofle"}], "l": "ansine"}, {"c": [{"l": "bikoar"}, {"l": "kyukopine"}, {"l": "koan"}, {"l": "pasetakyu"}, {"l": "kyukyunoarke"}], "l": "kekyamata"}, {"c": [{"l": "luzo"}, {"l": "pibukyubule"}, {"l": "kokyuse"}, {"l": "tribole"}], "l": "takyu"}, {"c": [{"l": "fopesu"}, {"l": "leno"}, {"l": "koesmazo"}, {"l": "gotritrile"}, {"l": "kyuna"}], "l": "koanke"}], "l": "kyusuleka"}, {"c": [{"l": "kokees"}, {"l": "papi"}], "l": "nekyupipa"}, {"l": "pelusenepa"}], "l": "lekya"}], "l": "lesutrifle"}], "l": "kapaankya"}], "l": "arsifubo"}, {"c": [{"c": [{"c": [{"l": "sukyakase"}, {"c": [{"l": "kyukyusiflo"}, {"c": [{"l": "penekyasu"}, {"l": "kyazo"}, {"c": [{"l": "kyutana"}, {"l": "oleipafu"}, {"l": "pape"}, {"l": "lukokasu"}, {"l": "gotrianlees"}, {"l": "bofugoko"}, {"l": "flogo"}], "l": "peletakokyu"}, {"c": [{"l": "subi"}, {"l": "arsies"}, {"l": "onazoii"}, {"l": "pabopisubi"}, {"l": "sinokya"}], "l": "pafloke"}], "l": "ankyu"}, {"l": "osifleseta"}, {"l": "kees"}, {"l": "bosu"}, {"l": "esanokya"}, {"l": "kyaarbine"}], "l": "fobolebi"}, {"l": "boookono"}, {"l": "kepefuna"}, {"c": [{"l": "zotri"}, {"l": "osu"}, {"c": [{"c": [{"l": "sekono"}, {"l": "fleluseo"}], "l": "zokyakofono"}, {"l": "seonese"}, {"l": "kobo"}], "l": "pipago"}, {"l": "lusipi"}, {"l": "floiopabo"}], "l": "sisikenose"}], "l": "flear"}, {"l": "flefloflebi"}], "l": "boka"}, {"c": [{"l": "leta"}, {"c": [{"c": [{"l": "kapapenole"}, {"l": "luarar"}, {"l": "leseno"}, {"l": "naan"}, {"c": [{"l": "bukyubi"}, {"l": "anlusiar"}, {"l": "kese"}, {"l": "anfokebu"}, {"l": "nana"}], "l": "kyafuiflose"}, {"l": "biose"}, {"c": [{"l": "kosiko"}, {"l": "fuarno"}, {"l": "neke"}], "l": "okei"}], "l": "fuiikyase"}, {"l": "pasi"}, {"c": [{"c": [{"l": "manaiko"}, {"c": [{"l": "flonaka"}, {"l": "antrinobo"}, {"l": "fukakota"}, {"l": "nemaflepapa"}, {"l": "okeflese"}], "l": "fuanta"}, {"l": "butrifloeske"}, {"c": [{"l": "nakyaleta"}, {"l": "osuanma"}, {"l": "sipa"}, {"l": "fupekoanbi"}, {"l": "flefleflebogo"}, {"l": "trisearpe"}, {"l": "ankya"}], "l": "fuflefo"}, {"l": "anesne"}], "l": "bisees"}, {"c": [{"l": "ole"}, {"l": "pinoopi"}, {"l": "anpaka"}], "l": "estrikyafo"}, {"l": "onope"}, {"c": [{"c": [{"l": "silele"}, {"l": "lukosutri"}, {"l": "anfu"}], "l": "flonao"}], "l": "pile"}, {"l": "paanfosu"}, {"c": [{"l": "mata"}, {"c": [{"l": "fopeta"}, {"l": "pebolebi"}, {"l": "fomafu"}, {"l": "lekafloarko"}, {"l": "anflosikean"}, {"l": "fusupafuo"}, {"l": "kyuflookyubi"}], "l": "pifleanbi"}, {"c": [{"l": "siflemanapa"}, {"l": "flekyubi"}, {"l": "pepifle"}, {"l": "kano"}, {"l": "pagokole"}, {"l": "sutaarna"}, {"l": "kepe"}], "l": "ookyunaes"}, {"l": "ikogo"}, {"l": "buarbo"}, {"l": "antrisi"}], "l": "kanafuesbi"}], "l": "kena"}], "l": "ketabono"}, {"l": "lezo"}, {"c": [{"l": "kaboluna"}, {"l": "foan"}, {"l": "sego"}, {"l": "lefosuflo"}, {"l": "sesuesbu"}, {"l": "eszotrii"}], "l": "oika"}, {"c": [{"l": "noesta"}, {"c": [{"l": "bukyuar"}, {"l": "kyusu"}, {"l": "sibo"}, {"l": "argofleanlu"}, {"l": "goannesipe"}], "l": "boanpe"}], "l": "maflotrilefo"}, {"c": [{"l": "kefusigo"}, {"c": [{"l": "kekyupei"}], "l": "pizokasu"}], "l": "flokyu"}], "l": "kyata"}, {"c": [{"c": [{"l": "kakyabotaar"}, {"l": "noartritaan"}, {"l": "fopa"}], "l": "kyuiar"}, {"l": "fonanakaan"}, {"l": "kezoluarflo"}, {"c": [{"l": "kepebu"}], "l": "anfletabika"}, {"c": [{"l": "esfo"}, {"l": "kyukata"}, {"l": "koartaneko"}, {"l": "fukesi"}], "l": "kaboka"}, {"l": "sibo"}, {"c": [{"c": [{"c": [{"c": [{"l": "mapigoanne"}, {"l": "mafle"}, {"l": "bigonakasi"}, {"l": "kyaessese"}, {"l": "tribune"}, {"l": "subisefuse"}, {"l": "fopisibubo"}], "l": "gofuesna"}, {"l": "boarflokyune"}, {"l": "buansekoka"}, {"c": [{"l": "sike"}, {"l": "pipipakya"}, {"l": "fopaesko"}], "l": "kyabiine"}, {"l": "kyaleflepema"}, {"l": "lelenesu"}], "l": "oarpa"}], "l": "napesule"}, {"l": "letrinazokyu"}, {"l": "zomatriar"}, {"c": [{"l": "komako"}], "l": "esgopebone"}], "l": "kyupape"}], "l": "pii"}, {"c": [{"l": "supepi"}, {"l": "flolumase"}, {"c": [{"c": [{"c": [{"l": "kyakekyukya"}], "l": "zoifu"}, {"l": "kosise"}, {"l": "kaansufu"}, {"l": "okokyapama"}, {"c": [{"l": "arkekya"}, {"l": "kyui"}, {"l": "eslenopiko"}, {"l": "kaararle"}, {"l": "koosu"}, {"l": "arsubo"}, {"l": "oesan"}], "l": "lekyafobo"}, {"l": "fofotane"}, {"l": "kabukyu"}], "l": "sefo"}, {"c": [{"l": "nebuesmale"}, {"l": "estrinoano"}, {"l": "sioflose"}], "l": "nalu"}, {"c": [{"l": "luflo"}, {"c": [{"l": "sumape"}, {"c": [{"l": "sezo"}], "l": "lenokya"}, {"l": "kyupi"}, {"l": "lukapenata"}], "l": "lubupa"}], "l": "bifo"}, {"c": [{"c": [{"l": "nofo"}, {"l": "kear"}, {"c": [{"l": "naozo"}, {"l": "letatata"}], "l": "sionearna"}, {"l": "palekya"}, {"l": "anpebupi"}], "l": "tako"}, {"l": "flematri"}], "l": "esfofoma"}], "l": "letrikya"}, {"c": [{"c": [{"l": "nobu"}, {"l": "nele"}], "l": "lefu"}, {"c": [{"l": "eslune"}], "l": "peanes"}, {"c": [{"c": [{"c": [{"l": "flegoes"}, {"l": "fleoke"}, {"l": "flelu"}], "l": "lulenegoma"}, {"l": "fokogole"}, {"l": "flono"}, {"c": [{"l": "zomafuarbu"}, {"l": "noletri"}, {"l": "pepimaar"}], "l": "anfotapi"}, {"l": "searpe"}], "l": "pebo"}, {"c": [{"c": [{"l": "buluanta"}, {"l": "pitakyai"}, {"l": "pimapigo"}, {"l": "nogo"}], "l": "anzokyubo"}, {"l": "gobi"}, {"l": "fosizonafo"}], "l": "fope"}, {"l": "goan"}, {"l": "peflotabu"}, {"l": "neota"}, {"c": [{"l": "kyanoanka"}, {"l": "fule"}, {"l": "goke"}, {"l": "pepi"}, {"l": "panokobupi"}], "l": "papeesbu"}, {"l": "biflonasi"}], "l": "triozopipi"}, {"c": [{"c": [{"l": "trifle"}, {"c": [{"l": "biar"}, {"l": "kapase"}, {"l": "susu"}, {"l": "triarsebi"}], "l": "kepakasefle"}, {"l": "kyuzoesno"}, {"l": "siantale"}], "l": "flebunefoflo"}, {"l": "pelufloi"}], "l": "paka"}, {"c": [{"l": "nezopa"}, {"l": "tata"}, {"l": "flear"}, {"l": "suzofune"}, {"l": "nokya"}, {"l": "zopi"}, {"l": "opi"}], "l": "esi"}, {"c": [{"l": "foseneflena"}, {"c": [{"l": "funokyu"}, {"l": "pikyubu"}], "l": "takebi"}, {"l": "bulekaes"}, {"c": [{"l": "bian"}], "l": "arbu"}, {"l": "esfo"}], "l": "buar"}], "l": "kaka"}], "l": "olusu"}, {"c": [{"c": [{"c": [{"l": "koaro"}, {"l": "lufupake"}, {"c": [{"l": "espepapi"}, {"c": [{"l": "anneflefuar"}, {"l": "kyaleooan"}, {"l": "sikekyu"}, {"l": "trileta"}], "l": "oketai"}, {"c": [{"l": "naflenapapi"}, {"l": "kei"}, {"l": "fopa"}], "l": "kyakegokafo"}], "l": "bipii"}, {"l": "pabutri"}, {"c": [{"l": "kyukyukyabulu"}, {"l": "nanape"}], "l": "kyuarsizo"}], "l": "bifo"}, {"c": [{"l": "kokyukyufle"}, {"l": "kyata"}, {"l": "kake"}, {"c": [{"l": "nalu"}, {"c": [{"l": "futaozo"}, {"l": "kyapile"}, {"l": "nabufulu"}, {"l": "kyunano"}, {"l": "arse"}, {"l": "lebikefufo"}], "l": "nale"}, {"l": "suopa"}, {"l": "opikyaanke"}, {"l": "legolukene"}, {"c": [{"l": "inepi"}, {"l": "kyuno"}, {"l": "kaokyalu"}], "l": "arneananzo"}, {"l": "ketakakakyu"}], "l": "zokatakogo"}, {"l": "fukearpi"}], "l": "kakyafufuan"}], "l": "nekyuzobi"}, {"c": [{"c": [{"l": "oflotagoo"}, {"l": "kyamakyaar"}, {"l": "ofues"}, {"l": "gofu"}, {"l": "bikagokolu"}], "l": "sunelear"}, {"c": [{"l": "natri"}, {"l": "sefo"}, {"l": "butrigo"}, {"c": [{"l": "lepi"}, {"l": "fupapi"}, {"c": [{"l": "sebi"}, {"l": "luselule"}, {"l": "nobinole"}, {"l": "flolu"}], "l": "triluanflelu"}], "l": "trikyubo"}, {"c": [{"l": "bisefo"}, {"l": "zoi"}, {"c": [{"l": "iotrinezo"}, {"l": "flofleankena"}, {"l": "sepalutri"}, {"l": "arketa"}, {"l": "fonooes"}], "l": "flego"}, {"l": "kepilufofu"}], "l": "goessi"}], "l": "pesinepa"}], "l": "esnanekabi"}, {"l": "lesuzopi"}, {"c": [{"c": [{"l": "sibusekopa"}, {"l": "flene"}, {"l": "iansu"}, {"c": [{"l": "mabiarfleta"}, {"l": "lufleessu"}, {"c": [{"l": "sisi"}, {"l": "taifopi"}], "l": "ansezosile"}], "l": "flotri"}, {"c": [{"l": "kolele"}, {"l": "noes"}, {"l": "kyupeo"}], "l": "sisepafu"}], "l": "sunabilupe"}, {"c": [{"c": [{"l": "nopakooma"}, {"l": "piessu"}, {"l": "senelu"}, {"l": "pita"}, {"l": "gonanesisu"}, {"l": "papiarlupi"}, {"l": "zopigo"}], "l": "naarna"}], "l": "sikaarka"}, {"l": "flokekotri"}, {"l": "flogosusi"}, {"l": "luflopa"}, {"c": [{"l": "peankobui"}, {"c": [{"l": "lefosego"}], "l": "pisuestri"}, {"c": [{"l": "fleflena"}], "l": "flebukyaflono"}], "l": "flebi"}], "l": "lees"}, {"c": [{"l": "inebo"}, {"c": [{"c": [{"l": "esanbi"}], "l": "susekakya"}, {"c": [{"l": "piko"}, {"c": [{"l": "bipi"}, {"l": "kyusuanpaka"}], "l": "zofueses"}, {"l": "flenaikyu"}, {"l": "kakyaanflona"}], "l": "pinotrine"}, {"c": [{"l": "gopepipabo"}, {"l": "pakaluboan"}, {"l": "triflofotrine"}, {"l": "kolegofu"}], "l": "kokobukano"}, {"l": "ketri"}], "l": "nei"}, {"l": "neneomao"}, {"c": [{"l": "anpa"}, {"l": "kyapisiima"}, {"l": "arkafoko"}], "l": "sefle"}], "l": "kokyukekose"}], "l": "gosule"}, {"l": "ikyui"}], "l": "naseifono"}, {"c": [{"c": [{"l": "bitrileanne"}, {"c": [{"c": [{"l": "nefo"}, {"l": "tafopa"}, {"l": "tritanake"}, {"c": [{"l": "flolekya"}], "l": "kyabu"}, {"l": "fuflekya"}], "l": "bufu"}, {"c": [{"l": "kyako"}], "l": "fomai"}, {"c": [{"l": "kokatakofo"}, {"l": "pabunakokya"}, {"l": "kyuanesbo"}, {"l": "kyazopeone"}], "l": "kana"}, {"c": [{"c": [{"c": [{"l": "kole"}, {"l": "bopiiko"}, {"l": "noseflosufo"}, {"l": "luesobo"}, {"l": "bugosi"}], "l": "fogobi"}, {"l": "flotaanar"}, {"l": "kyapiko"}, {"l": "ipazobio"}, {"l": "lukyuflo"}, {"c": [{"l": "okyakabi"}, {"l": "nakyuosune"}], "l": "pebusi"}, {"l": "iarzoarkyu"}], "l": "eslu"}, {"l": "paneopelu"}, {"c": [{"l": "floeslufle"}], "l": "gobinei"}, {"l": "sesepakafo"}, {"c": [{"l": "gokoartrine"}, {"l": "flefuan"}, {"l": "pian"}, {"l": "pakapeko"}], "l": "pisukyunoan"}], "l": "flekape"}, {"c": [{"l": "fopibo"}, {"l": "kaluno"}, {"l": "nasego"}, {"c": [{"c": [{"l": "floika"}, {"l": "kazokyaflo"}, {"l": "zozole"}, {"l": "selufopeta"}, {"l": "trilu"}, {"l": "esfonopego"}], "l": "bule"}, {"c": [{"l": "sisiflesizo"}, {"l": "pianbu"}, {"l": "pifukozokyu"}, {"l": "ike"}, {"l": "bupi"}], "l": "pitrilefle"}], "l": "siseseoi"}, {"l": "biarpapatri"}], "l": "noianbuke"}, {"c": [{"l": "tribika"}, {"l": "noibo"}, {"l": "luko"}], "l": "fofletaflo"}, {"c": [{"l": "buflekotri"}, {"l": "luzomakago"}, {"l": "kabueska"}, {"l": "suka"}, {"c": [{"l": "espaka"}, {"l": "triflo"}, {"c": [{"l": "leflepilesi"}, {"l": "kekyukyu"}, {"l": "bufloflopi"}, {"l": "itapa"}, {"l": "pafuesesne"}, {"l": "tapepe"}], "l": "fupagosu"}], "l": "zokata"}, {"l": "pefo"}], "l": "opetrisubi"}], "l": "maobo"}, {"l": "kanakazo"}, {"l": "seesgonese"}, {"c": [{"c": [{"l": "zonebu"}, {"l": "maannasile"}], "l": "leinaarfle"}, {"l": "pekyu"}, {"c": [{"c": [{"l": "anbunoan"}, {"l": "mamakyasisu"}], "l": "kyapisipafo"}, {"l": "kyuanfu"}, {"c": [{"l": "suflekyu"}], "l": "nesukolu"}, {"c": [{"l": "masufopile"}, {"l": "ookyubu"}, {"l": "tapabubi"}, {"l": "kyukogo"}], "l": "foarbipi"}, {"l": "trinazoitri"}], "l": "sefoanoke"}], "l": "ango"}, {"c": [{"l": "aroes"}, {"c": [{"l": "peflenoo"}, {"c": [{"l": "zoko"}, {"l": "booita"}, {"c": [{"l": "kepenenama"}, {"l": "kotri"}, {"l": "kyafle"}], "l": "arkatri"}, {"l": "ozoanfle"}], "l": "suestri"}], "l": "flonema"}, {"c": [{"c": [{"c": [{"l": "eskyu"}, {"l": "peflobubina"}, {"l": "nokonopapa"}, {"l": "ibuflo"}, {"l": "luneflelubi"}, {"l": "lekya"}], "l": "kyatrikya"}, {"c": [{"l": "flekyao"}, {"l": "sekenabu"}, {"l": "fupe"}, {"l": "flebuzogogo"}], "l": "esflenena"}, {"l": "bikeeslu"}, {"c": [{"l": "tapikeka"}, {"l": "lubui"}, {"l": "anfleonosu"}, {"l": "supifona"}], "l": "zoboar"}, {"l": "piflo"}, {"l": "kema"}, {"c": [{"l": "bosetale"}, {"l": "iflokyubo"}, {"l": "goko"}, {"l": "nanebi"}], "l": "tasuar"}], "l": "susenane"}, {"l": "flebinasuflo"}], "l": "sipaes"}, {"c": [{"c": [{"l": "tanearpe"}, {"l": "anlenotri"}, {"c": [{"l": "tribi"}, {"l": "flear"}, {"l": "okyataokya"}, {"l": "pasu"}, {"l": "bose"}, {"l": "gokyatriseka"}], "l": "bukear"}, {"l": "letrianleka"}], "l": "buesi"}, {"c": [{"c": [{"l": "bukyafleeska"}, {"l": "naarflofobu"}, {"l": "flenosu"}], "l": "manoarlu"}], "l": "gono"}, {"l": "biika"}, {"c": [{"l": "kakyu"}, {"l": "flesi"}, {"l": "kyakobi"}, {"l": "esbisu"}, {"l": "kyaflekyatakyu"}], "l": "tasinetrifu"}, {"l": "kalezo"}, {"l": "pibu"}, {"l": "anmakekyata"}], "l": "pabu"}, {"l": "sinagoluna"}, {"l": "fopapa"}], "l": "aran"}, {"l": "fusuan"}], "l": "floes"}, {"c": [{"c": [{"l": "arneke"}], "l": "trisima"}, {"c": [{"l": "fopeesikyu"}], "l": "kyakya"}, {"l": "botrinata"}, {"c": [{"c": [{"c": [{"l": "kyupe"}, {"l": "kesisesipe"}, {"l": "flebopago"}, {"c": [{"l": "takya"}, {"l": "flei"}, {"l": "noflesebo"}, {"l": "kyanazo"}, {"l": "kekyuflo"}, {"l": "arflomake"}, {"l": "taflo"}], "l": "flokelufoke"}], "l": "zomaka"}, {"l": "nepika"}], "l": "pineno"}, {"c": [{"c": [{"l": "flolukole"}, {"l": "luma"}], "l": "lesu"}, {"l": "lezo"}, {"l": "pekebikees"}, {"c": [{"l": "bofleneka"}], "l": "naka"}], "l": "sisies"}, {"c": [{"l": "pelefu"}, {"c": [{"l": "kao"}, {"l": "kyupipekeo"}, {"l": "nokatrima"}, {"l": "kyapa"}, {"c": [{"l": "sufle"}, {"l": "fuzofu"}], "l": "buananno"}], "l": "boko"}, {"c": [{"l": "bole"}, {"c": [{"l": "kyabogolu"}, {"l": "kyale"}, {"l": "zone"}, {"l": "lufufobo"}, {"l": "kobu"}, {"l": "taope"}, {"l": "arsi"}], "l": "bubueskyu"}], "l": "luneitape"}, {"c": [{"l": "sukya"}, {"l": "mano"}, {"l": "eso"}, {"l": "keilu"}], "l": "bisukama"}, {"c": [{"l": "kees"}, {"c": [{"l": "kakoflogo"}, {"l": "nebimasi"}, {"l": "anesbukyues"}, {"l": "bobu"}, {"l": "ies"}, {"l": "gokekyusifle"}, {"l": "pabibu"}], "l": "pilutri"}, {"l": "kakopile"}, {"l": "kyuketribukya"}, {"c": [{"l": "bonegokao"}, {"l": "kopifuo"}, {"l": "nokepesuar"}, {"l": "kyubu"}, {"l": "gope"}, {"l": "siobuko"}, {"l": "kebibuar"}], "l": "tafoneka"}, {"l": "bopisino"}, {"l": "lesi"}], "l": "anfokobine"}, {"l": "nenotapa"}, {"l": "esfle"}], "l": "arose"}, {"c": [{"l": "tafukyape"}, {"l": "pago"}, {"l": "koko"}, {"l": "kyaifonesu"}, {"l": "lekekenale"}], "l": "nozosususu"}, {"c": [{"l": "trikokofu"}, {"l": "namaes"}], "l": "kyabisifleko"}], "l": "tribo"}, {"c": [{"l": "flozonene"}, {"c": [{"c": [{"l": "pako"}, {"l": "lenatrian"}], "l": "peflepi"}, {"c": [{"l": "konefunone"}], "l": "kakyupa"}], "l": "sunapa"}], "l": "bufle"}], "l": "susu"}, {"l": "ankyuzoessi"}, {"c": [{"c": [{"l": "kyusezotake"}, {"c": [{"l": "sefusesii"}, {"l": "ozogozone"}, {"l": "lekeketafo"}, {"l": "papakyufulu"}, {"c": [{"c": [{"l": "bupelefle"}, {"l": "notalu"}, {"l": "tata"}, {"l": "fupi"}], "l": "nepepafle"}, {"l": "bofupe"}], "l": "flelegokapi"}, {"c": [{"l": "nenapepasu"}, {"l": "fopasi"}, {"l": "kyuzoi"}, {"c": [{"l": "osufu"}, {"l": "nemata"}, {"l": "taar"}, {"l": "masikekoi"}, {"l": "takesukyune"}], "l": "kyasuta"}, {"c": [{"l": "oseboko"}, {"l": "kokatrifle"}, {"l": "foboar"}, {"l": "paifutaes"}, {"l": "isepe"}, {"l": "kyukafu"}], "l": "armakasui"}], "l": "kapego"}], "l": "sibifo"}, {"l": "kaflope"}, {"l": "ananse"}, {"l": "leko"}, {"c": [{"c": [{"c": [{"l": "fonofle"}, {"l": "trifule"}, {"l": "eskaarogo"}, {"l": "arsibuanfo"}, {"l": "tripeflookya"}], "l": "flokezo"}, {"l": "trizo"}, {"l": "tripano"}, {"c": [{"l": "gobosipefle"}, {"l": "kobusebu"}, {"l": "bikyufu"}, {"l": "kafu"}], "l": "ipa"}, {"l": "bobo"}], "l": "boestale"}, {"l": "bukesikyu"}, {"l": "sipipezo"}, {"c": [{"l": "fonetribo"}, {"l": "gobi"}, {"l": "foar"}, {"c": [{"l": "tale"}, {"l": "kyunebu"}, {"l": "makyusile"}, {"l": "gosimabo"}, {"l": "iflesepi"}, {"l": "bigo"}], "l": "sene"}, {"l": "gobuzosu"}, {"l": "siflogo"}], "l": "gofle"}, {"c": [{"l": "noseke"}, {"l": "piotritrino"}, {"l": "subi"}], "l": "pafofle"}, {"c": [{"l": "flone"}], "l": "fosupiar"}], "l": "tasekokaflo"}], "l": "buflo"}, {"c": [{"l": "gookebone"}, {"l": "eskegosu"}, {"c": [{"l": "fleflofukyao"}, {"l": "kyaesfobo"}, {"l": "kepanetaan"}, {"c": [{"l": "kyuikeigo"}, {"c": [{"l": "fonozo"}, {"l": "anzo"}, {"l": "pale"}, {"l": "lesepesifu"}, {"l": "bokyuko"}, {"l": "zoessesu"}], "l": "ine"}, {"l": "obo"}, {"l": "palukyufle"}, {"l": "nebita"}, {"l": "kebo"}], "l": "naflele"}, {"l": "arkeka"}, {"c": [{"l": "bone"}, {"l": "bunolesikyu"}, {"l": "kabifle"}, {"c": [{"l": "sekaarnozo"}, {"l": "onake"}, {"l": "leflopako"}, {"l": "arbukepei"}], "l": "fleno"}, {"l": "kegoibulu"}, {"l": "fonaoarsu"}, {"l": "netrikyuzono"}], "l": "flokyaluflo"}], "l": "luka"}, {"c": [{"c": [{"l": "kyuflosi"}, {"l": "leikene"}], "l": "gone"}], "l": "flomano"}], "l": "pikokanake"}, {"c": [{"c": [{"l": "kesi"}, {"c": [{"l": "bike"}, {"l": "seflone"}, {"c": [{"l": "esmafues"}, {"l": "trike"}, {"l": "bofokyape"}, {"l": "sefletalufo"}, {"l": "kyafle"}], "l": "goluflolego"}, {"l": "iarfu"}, {"c": [{"l": "onebo"}], "l": "zokepibukya"}, {"l": "itribueses"}, {"l": "bimanaiflo"}], "l": "anta"}, {"l": "ansiarno"}, {"l": "goespakozo"}, {"l": "arno"}, {"l": "bokyupenazo"}, {"l": "koo"}], "l": "pafu"}, {"l": "lubitagosi"}], "l": "napifogota"}, {"l": "zobukoo"}, {"c": [{"c": [{"l": "pies"}], "l": "fokyukyu"}, {"c": [{"c": [{"l": "taflopeole"}, {"c": [{"l": "gokobone"}, {"l": "kesukobuan"}, {"l": "supa"}, {"l": "fosu"}, {"l": "kelepa"}, {"l": "fopi"}, {"l": "naflobubolu"}], "l": "zotakyu"}, {"l": "osunabo"}, {"c": [{"l": "neoi"}, {"l": "obosipibu"}, {"l": "bokyu"}, {"l": "lusepinabo"}, {"l": "nokaesbu"}], "l": "lekomafu"}, {"l": "esseflo"}, {"l": "talupibona"}], "l": "oflopibupi"}, {"l": "triflosees"}, {"c": [{"l": "noanboo"}, {"l": "lelefui"}, {"l": "paanesma"}, {"l": "kakyasibu"}, {"l": "flono"}], "l": "kopefusepi"}, {"l": "flei"}], "l": "siar"}, {"c": [{"l": "zona"}, {"c": [{"c": [{"l": "bufuifu"}, {"l": "kopeko"}, {"l": "neesfufleta"}, {"l": "luta"}, {"l": "matri"}, {"l": "fukyu"}, {"l": "gobibimafle"}], "l": "sikyatri"}, {"c": [{"l": "fufuno"}, {"l": "bikofoi"}, {"l": "trisita"}, {"l": "nakyanofo"}, {"l": "flokyazono"}, {"l": "anarsipeflo"}, {"l": "flesueslu"}], "l": "zoflesi"}, {"l": "fupikyanobi"}, {"l": "kagokyatri"}, {"c": [{"l": "pazosinota"}, {"l": "pakanago"}, {"l": "iannale"}], "l": "fuarfues"}, {"l": "sunataflota"}, {"c": [{"l": "pibuma"}, {"l": "mabupeoar"}, {"l": "pamapeke"}, {"l": "kyakya"}, {"l": "pipebu"}, {"l": "neesogo"}], "l": "flebopa"}], "l": "tataes"}, {"l": "ipebifloka"}, {"l": "pibubi"}, {"l": "sinapa"}, {"c": [{"c": [{"l": "kyumakeessi"}], "l": "kyaarzopi"}, {"c": [{"l": "pakenago"}, {"l": "essetazoka"}], "l": "bukyufuikya"}], "l": "nearkyubu"}], "l": "bokyukobiko"}, {"l": "futritrioma"}, {"c": [{"c": [{"l": "fleotri"}, {"l": "zoflei"}, {"c": [{"l": "ileko"}, {"l": "fupiarse"}, {"l": "nalekyakoflo"}, {"l": "lebu"}, {"l": "zoolekya"}], "l": "buno"}, {"l": "kafono"}, {"l": "sufobo"}], "l": "floka"}, {"l": "trinegokalu"}, {"c": [{"c": [{"l": "kabina"}, {"l": "triarfloi"}], "l": "fufletrineflo"}], "l": "sekyafo"}, {"c": [{"l": "gobufo"}, {"c": [{"l": "zoanpi"}, {"l": "gone"}, {"l": "foes"}, {"l": "masikyasuse"}, {"l": "esnaolu"}, {"l": "antriarfui"}], "l": "fokase"}], "l": "nakyu"}, {"l": "kyaigo"}, {"l": "trino"}], "l": "pekobilulu"}, {"l": "neta"}], "l": "ararkanofo"}], "l": "fopisinofu"}], "l": "fuse"}, {"c": [{"c": [{"l": "biluokyufu"}], "l": "paneflo"}, {"c": [{"l": "noka"}, {"c": [{"l": "busi"}, {"c": [{"l": "foonegosi"}, {"l": "susukyazo"}, {"l": "fupana"}, {"c": [{"c": [{"l": "arpabuzoo"}, {"l": "leflonoanar"}, {"l": "kyuse"}, {"l": "semapebubu"}, {"l": "koka"}, {"l": "kyano"}, {"l": "fukyafo"}], "l": "arsusupe"}, {"l": "arpi"}, {"l": "eszo"}], "l": "kyaflokyatriar"}], "l": "tafuarpa"}, {"c": [{"l": "kyakabo"}, {"c": [{"l": "busi"}], "l": "flokeseboan"}, {"l": "lunatakyaar"}, {"l": "iosina"}, {"l": "lefupizosu"}, {"c": [{"l": "sisipe"}, {"l": "bonama"}, {"l": "flenearzo"}], "l": "tagoesna"}], "l": "sutagoi"}, {"l": "flego"}, {"c": [{"l": "arestri"}, {"c": [{"c": [{"l": "zonosuna"}, {"l": "fuzone"}, {"l": "sipa"}], "l": "kokyapisesi"}, {"l": "goluo"}, {"c": [{"l": "kesibipi"}, {"l": "lebofle"}, {"l": "pees"}, {"l": "triespa"}], "l": "suketai"}], "l": "kekeisupi"}, {"l": "masitribono"}, {"l": "botribopaka"}, {"l": "neotrisi"}], "l": "neflozokyugo"}], "l": "nopa"}], "l": "gopigopeflo"}, {"c": [{"c": [{"c": [{"c": [{"l": "lekyuneta"}, {"c": [{"l": "pesugo"}, {"l": "lele"}, {"l": "netrikoluta"}, {"l": "pibilebi"}, {"l": "floke"}, {"l": "tanoflenego"}, {"l": "nofusiflozo"}], "l": "inobi"}, {"l": "sukabiogo"}, {"c": [{"l": "gokoma"}, {"l": "flolesi"}], "l": "pafo"}], "l": "annapipi"}, {"l": "bona"}], "l": "onefulefle"}, {"c": [{"l": "fufle"}, {"c": [{"c": [{"l": "kyupafobi"}, {"l": "funefleifu"}, {"l": "anarkamaka"}], "l": "trikokolu"}], "l": "tafosekapa"}, {"l": "bifu"}, {"l": "buzo"}], "l": "bies"}, {"c": [{"l": "bikopa"}, {"c": [{"c": [{"l": "fukape"}], "l": "flotri"}, {"l": "nezokyu"}, {"c": [{"l": "naarkofofo"}, {"l": "kyukya"}, {"l": "lepe"}, {"l": "nefle"}], "l": "ipena"}, {"l": "nasema"}, {"l": "anlelufle"}, {"l": "matriflefu"}, {"l": "arinoar"}], "l": "nagoannefle"}, {"l": "fleareskyuflo"}, {"c": [{"l": "flese"}, {"c": [{"l": "koboanno"}, {"l": "pizokyunelu"}, {"l": "kyule"}], "l": "flepena"}], "l": "naboanflean"}, {"l": "pabuan"}, {"c": [{"l": "lunabu"}, {"l": "tritribi"}, {"c": [{"l": "artribu"}, {"l": "flebukoko"}, {"l": "nano"}], "l": "gosekyuneka"}, {"c": [{"l": "fopi"}], "l": "oibies"}, {"l": "buta"}], "l": "anfu"}], "l": "neko"}, {"c": [{"l": "neboesike"}, {"l": "kegoan"}, {"l": "fubo"}, {"c": [{"l": "taisiflebi"}, {"c": [{"l": "panonefui"}], "l": "ofle"}, {"l": "buse"}, {"l": "luflefo"}], "l": "kyulukase"}], "l": "sususego"}, {"l": "taoka"}, {"l": "nabo"}, {"l": "pakeesfo"}], "l": "nakatritrike"}, {"c": [{"l": "kyulearar"}, {"l": "biboke"}, {"l": "netribu"}, {"l": "kamafu"}, {"c": [{"l": "fuse"}, {"l": "aresfo"}, {"l": "nogoi"}, {"c": [{"c": [{"l": "kyuzoflenoke"}, {"l": "ikyasu"}], "l": "luneka"}, {"l": "lukyakya"}, {"l": "flone"}, {"c": [{"l": "nofle"}, {"l": "magofu"}, {"l": "fokyubuke"}, {"l": "manabo"}, {"l": "flepinapefo"}], "l": "luankomama"}, {"c": [{"l": "zobokabu"}, {"l": "sekaselefo"}, {"l": "pafuflopaan"}, {"l": "gotri"}, {"l": "bieskebopa"}], "l": "suarkya"}, {"l": "okabiipa"}, {"c": [{"l": "taosise"}, {"l": "iko"}, {"l": "kobogo"}], "l": "luzo"}], "l": "sesi"}, {"l": "pekobu"}, {"l": "tabunobu"}], "l": "maibuna"}], "l": "kekeesesbo"}, {"l": "zonole"}], "l": "opi"}, {"c": [{"c": [{"l": "pine"}, {"c": [{"l": "konelu"}, {"c": [{"l": "anlean"}, {"l": "fuano"}, {"l": "fukagopi"}, {"l": "anpe"}, {"l": "trita"}, {"l": "bopaarzose"}], "l": "pako"}], "l": "fozoflepa"}, {"c": [{"l": "anlu"}, {"l": "aro"}, {"c": [{"l": "pepaestabu"}, {"l": "iilezona"}, {"l": "piko"}, {"c": [{"l": "essugo"}, {"l": "ikyuflo"}, {"l": "noesflesi"}], "l": "neka"}], "l": "ofufulugo"}, {"c": [{"l": "zobi"}, {"c": [{"l": "kaarpabino"}, {"l": "pioflobu"}, {"l": "supaflesi"}, {"l": "tapezo"}, {"l": "trisepibubu"}], "l": "ibiibikya"}, {"l": "trino"}], "l": "futri"}, {"c": [{"l": "pakalu"}, {"l": "anlupale"}, {"l": "pitafle"}, {"l": "bitriesse"}, {"c": [{"l": "nakyaflobio"}, {"l": "lego"}, {"l": "kobukyu"}, {"l": "paokaies"}, {"l": "arzo"}, {"l": "namale"}], "l": "tapipi"}, {"c": [{"l": "manalefobo"}, {"l": "malugookya"}, {"l": "kyai"}, {"l": "lui"}], "l": "kaii"}], "l": "fulu"}, {"c": [{"c": [{"l": "nabi"}], "l": "foonetripe"}, {"l": "arkyalu"}, {"l": "binopeisi"}, {"l": "ansuzoiko"}], "l": "kafu"}, {"c": [{"l": "fletama"}, {"l": "mana"}, {"l": "kebukees"}, {"l": "ika"}, {"c": [{"l": "anka"}, {"l": "takope"}], "l": "sego"}, {"c": [{"l": "fopipi"}, {"l": "nopa"}, {"l": "sipipeka"}, {"l": "talekyuesta"}], "l": "nakyazotri"}], "l": "piko"}], "l": "pianmaoke"}, {"c": [{"l": "pina"}, {"l": "zopego"}, {"l": "neleboflo"}, {"c": [{"l": "nonapi"}, {"l": "flekosearlu"}, {"l": "kelebi"}, {"c": [{"l": "nefu"}], "l": "gonofokyuse"}, {"l": "neesfle"}, {"l": "peke"}], "l": "botanatama"}, {"c": [{"c": [{"l": "sizofota"}, {"l": "keantrikya"}, {"l": "pikokyao"}], "l": "flefo"}], "l": "kyubo"}, {"c": [{"c": [{"l": "fleflene"}, {"l": "omafosu"}, {"l": "flonopi"}, {"l": "sio"}, {"l": "trikoke"}, {"l": "paesogoka"}, {"l": "boke"}], "l": "siobibi"}, {"l": "flosian"}, {"l": "kefu"}, {"c": [{"l": "flefupipa"}, {"l": "ogoartriko"}, {"l": "boan"}, {"l": "sunoflese"}, {"l": "arfoko"}, {"l": "ies"}, {"l": "sinaestrizo"}], "l": "kyubutrinobo"}, {"l": "gota"}], "l": "lugo"}], "l": "keestatritri"}], "l": "bukyubofo"}, {"l": "tatri"}, {"c": [{"c": [{"c": [{"c": [{"l": "espiantriko"}, {"l": "paio"}, {"l": "zoarzotaflo"}], "l": "onobipego"}, {"l": "pisepi"}, {"l": "antri"}], "l": "oo"}, {"l": "gobosinekyu"}, {"c": [{"l": "sibokyunepe"}, {"c": [{"l": "arpeigo"}, {"l": "arke"}, {"l": "panopakyu"}, {"l": "trita"}, {"l": "floanoka"}, {"l": "pipefle"}], "l": "obifotama"}, {"c": [{"l": "igo"}, {"l": "nafloflei"}, {"l": "biflees"}, {"l": "fusukyamatri"}, {"l": "kakeflepabu"}, {"l": "pepa"}], "l": "onopa"}, {"l": "nolekyakobu"}, {"c": [{"l": "kanena"}, {"l": "esi"}], "l": "iozoar"}, {"c": [{"l": "kosego"}, {"l": "pakepa"}, {"l": "anpinape"}, {"l": "eskyasikobu"}], "l": "pakafufoflo"}, {"l": "pakyufono"}], "l": "ogo"}, {"l": "triflotrisi"}], "l": "kyusio"}, {"c": [{"c": [{"l": "kaarmakya"}], "l": "sizo"}, {"c": [{"l": "lusisisune"}], "l": "arma"}, {"l": "pikya"}, {"l": "esfokyuzo"}, {"c": [{"l": "inonoar"}, {"l": "esarkema"}, {"l": "pezoma"}, {"l": "paseo"}], "l": "ankokoar"}, {"l": "kyulufokyafu"}, {"l": "kafukabi"}], "l": "mamaneka"}, {"c": [{"c": [{"l": "lego"}, {"l": "kaflo"}, {"c": [{"l": "nebootaan"}, {"l": "ikyulepi"}, {"l": "naeskyu"}, {"l": "antriluta"}], "l": "taanfoes"}, {"c": [{"l": "ise"}, {"l": "bobobukale"}], "l": "sunemanopi"}, {"l": "supi"}], "l": "flokyubu"}, {"l": "pekya"}, {"c": [{"l": "koflolubi"}, {"l": "kyuma"}, {"c": [{"l": "lekyupi"}, {"l": "okabokasi"}], "l": "kepi"}, {"l": "zonei"}], "l": "fotriikeo"}, {"l": "boletrizo"}, {"l": "fopibies"}], "l": "flofutaar"}, {"c": [{"c": [{"l": "taanbifle"}, {"l": "bioesfo"}, {"c": [{"l": "gosikogo"}, {"l": "siflo"}, {"l": "zosusu"}, {"l": "pefufo"}, {"l": "argo"}], "l": "kefolupane"}, {"l": "sululesebu"}], "l": "pizosikyu"}], "l": "kyubo"}, {"c": [{"l": "kesi"}, {"c": [{"l": "kaotasese"}, {"l": "kagosetata"}], "l": "ikyukama"}, {"c": [{"l": "lusu"}], "l": "pegole"}, {"l": "anfloko"}, {"l": "takoseopi"}, {"l": "zofle"}, {"c": [{"c": [{"l": "sutase"}, {"l": "kyubipe"}, {"l": "binepeflo"}, {"l": "nefo"}, {"l": "triizotribo"}, {"l": "kalu"}], "l": "kokyukyafupa"}, {"c": [{"l": "kobogoflobi"}, {"l": "floka"}, {"l": "kyusizobuke"}], "l": "ozolu"}, {"l": "goisikyu"}], "l": "flefono"}], "l": "lulepako"}, {"l": "sinelekyule"}], "l": "ofomafobi"}, {"l": "gobui"}, {"c": [{"l": "nefo"}, {"c": [{"c": [{"c": [{"l": "nasepa"}], "l": "kafusuo"}, {"l": "ibose"}, {"c": [{"l": "lees"}, {"l": "nozo"}, {"l": "suanar"}, {"l": "oeso"}], "l": "biflo"}, {"c": [{"l": "maartakyuan"}, {"l": "fukyaflebipi"}, {"l": "eskyapatri"}, {"l": "kyafueskya"}], "l": "kofloflo"}, {"l": "kalu"}], "l": "sile"}, {"l": "panapipa"}, {"c": [{"c": [{"l": "pemakyasile"}, {"l": "luflekoi"}, {"l": "kesi"}, {"l": "kenono"}], "l": "eszo"}, {"c": [{"l": "foes"}, {"l": "pena"}], "l": "kaan"}], "l": "maleo"}, {"l": "arse"}, {"l": "bupinoargo"}, {"c": [{"l": "seluka"}], "l": "neflobies"}, {"l": "pibuflekofu"}], "l": "pike"}, {"c": [{"l": "fuies"}, {"c": [{"l": "fosuflekepi"}, {"l": "aresfufle"}, {"l": "setane"}, {"l": "flokamakaflo"}, {"l": "trisui"}], "l": "tazo"}], "l": "sulebifoar"}, {"l": "nanefufo"}], "l": "peartrikyake"}], "l": "gosubuoi"}, {"c": [{"c": [{"c": [{"c": [{"l": "pelu"}, {"l": "kosutano"}, {"c": [{"l": "naleesfu"}, {"l": "fuargo"}], "l": "nopaflofoke"}, {"l": "kapepa"}], "l": "fopean"}, {"l": "kego"}, {"c": [{"l": "oflo"}, {"l": "fupabine"}, {"l": "kako"}, {"l": "iananno"}, {"l": "izo"}, {"c": [{"l": "lunaeskyu"}, {"l": "kyaflo"}, {"l": "paarsekyu"}, {"l": "sikofle"}, {"l": "annefuian"}, {"l": "tagoanbizo"}, {"l": "koona"}], "l": "senokyu"}], "l": "bigoflosefle"}, {"c": [{"l": "kyase"}, {"l": "anolu"}, {"l": "gokyufufle"}, {"l": "arkyaankabu"}], "l": "seikyasepe"}, {"l": "siflepesu"}, {"l": "zono"}, {"l": "bogoar"}], "l": "neoesbi"}], "l": "nolu"}, {"c": [{"c": [{"l": "zoka"}, {"l": "matrikaestri"}, {"l": "ike"}, {"l": "kyutasu"}, {"l": "nolesi"}], "l": "lupeo"}, {"c": [{"c": [{"c": [{"l": "nobupikaflo"}], "l": "triesnebuo"}], "l": "lefoflose"}, {"l": "bone"}, {"l": "bukemaarbi"}, {"l": "kapapi"}, {"c": [{"l": "taarnofose"}, {"c": [{"l": "suoopisu"}, {"l": "kafloneke"}, {"l": "pazokyu"}, {"l": "lekokyapi"}, {"l": "kanokya"}, {"l": "ota"}], "l": "kefupaankya"}, {"l": "letama"}], "l": "flebo"}, {"l": "keno"}, {"c": [{"l": "fopekyu"}, {"c": [{"l": "bimasenafo"}, {"l": "buseno"}, {"l": "pesifu"}, {"l": "nanetri"}, {"l": "bikya"}, {"l": "supai"}], "l": "nopi"}, {"l": "lufo"}, {"l": "buanpianbu"}, {"l": "eszoesessu"}], "l": "esfle"}], "l": "suleko"}, {"l": "sufufleflozo"}, {"c": [{"l": "lemana"}, {"l": "luesarbigo"}, {"c": [{"c": [{"l": "paflobo"}, {"l": "zopinole"}, {"l": "selu"}, {"l": "kole"}, {"l": "taar"}, {"l": "kyubiseke"}, {"l": "anzosunafo"}], "l": "flefle"}, {"l": "noestri"}, {"l": "nefleanse"}, {"c": [{"l": "suna"}, {"l": "nebutanakyu"}, {"l": "siflopesutri"}], "l": "tataan"}, {"l": "bukyapi"}], "l": "seno"}, {"c": [{"l": "sufo"}, {"l": "fleboarkyakyu"}, {"l": "napibibibo"}], "l": "flofotale"}], "l": "pibosu"}, {"l": "izokyu"}, {"l": "fubisikaar"}], "l": "pipibibine"}, {"c": [{"c": [{"l": "tripitripibi"}, {"l": "subopifo"}, {"l": "pikyapa"}], "l": "fotri"}, {"c": [{"c": [{"l": "arpipatrisu"}], "l": "kyatri"}, {"l": "nasu"}, {"c": [{"l": "napiflonono"}], "l": "lubile"}, {"l": "koanlezona"}, {"c": [{"l": "gopi"}, {"l": "gobiole"}, {"c": [{"l": "mafofusuar"}, {"l": "luma"}, {"l": "lufoluanar"}, {"l": "takyuogope"}, {"l": "pigobu"}], "l": "fufosizo"}, {"l": "pata"}], "l": "anmai"}], "l": "fulu"}, {"c": [{"l": "lubi"}, {"c": [{"l": "flosukyakyapi"}, {"l": "nonafupifu"}, {"l": "arpisuko"}, {"l": "tribukyabi"}, {"l": "bui"}, {"c": [{"l": "suseanbues"}, {"l": "zoka"}, {"l": "annefu"}], "l": "kyuboes"}, {"c": [{"l": "zoeskopekya"}, {"l": "trigobosu"}], "l": "leflo"}], "l": "neflosukyubi"}, {"c": [{"l": "pasufuselu"}, {"l": "floboma"}, {"l": "zope"}, {"c": [{"l": "fufleflo"}, {"l": "gokyaboesflo"}, {"l": "nabo"}, {"l": "tamakoflo"}, {"l": "anarkosi"}, {"l": "bulu"}, {"l": "patrikaflotri"}], "l": "pafle"}, {"l": "suma"}, {"l": "kobi"}, {"l": "gonaesko"}], "l": "arkenefui"}, {"l": "petrifufuflo"}, {"l": "flofupagoar"}, {"l": "peleta"}], "l": "pefufleflo"}, {"c": [{"c": [{"l": "anlefleluko"}], "l": "sunetafleka"}, {"l": "boesfokyasu"}, {"l": "kokyanepi"}, {"l": "kyalu"}, {"c": [{"l": "kasu"}, {"c": [{"l": "kebubies"}], "l": "flekoanse"}], "l": "nekyuflone"}], "l": "kyusimafu"}, {"l": "lesubo"}, {"c": [{"c": [{"l": "lugo"}], "l": "sitakoar"}], "l": "futrizo"}], "l": "mapepa"}, {"l": "fupaes"}], "l": "subise"}, {"c": [{"l": "trifope"}, {"c": [{"c": [{"l": "tata"}, {"c": [{"l": "nonanoflopi"}, {"l": "koflosipe"}, {"l": "zoarpepe"}, {"l": "mano"}], "l": "keo"}, {"l": "kekyutago"}, {"l": "makyako"}, {"c": [{"l": "nokoboansi"}, {"l": "esnokatri"}, {"l": "bibupena"}, {"l": "arpago"}], "l": "anfletasu"}, {"c": [{"l": "naflesi"}], "l": "kefutrizoke"}], "l": "fomafu"}], "l": "ikyupelear"}, {"l": "kanepa"}], "l": "koarfu"}], "l": "tazoes"}, {"c": [{"c": [{"c": [{"c": [{"l": "floi"}, {"l": "futagofufle"}, {"c": [{"l": "foi"}, {"l": "luzo"}, {"l": "bifleananne"}, {"l": "kaflemakyabu"}, {"l": "bofulumabo"}], "l": "ile"}, {"l": "bilupabu"}, {"l": "espipekabi"}, {"l": "ipi"}], "l": "konelu"}, {"c": [{"c": [{"c": [{"l": "supi"}, {"l": "opa"}, {"l": "suse"}, {"l": "bikyukyu"}, {"l": "lukeketrisu"}], "l": "zoluiar"}], "l": "ipapikyu"}, {"c": [{"c": [{"l": "esseluan"}, {"l": "kakyunezoka"}], "l": "mase"}], "l": "supisugobu"}, {"c": [{"l": "arpeesta"}, {"c": [{"l": "tama"}, {"l": "zofukobiflo"}, {"l": "trikyu"}, {"l": "triokanakyu"}, {"l": "trisubi"}, {"l": "magokyu"}], "l": "bikyabo"}, {"l": "takefo"}, {"l": "sipele"}, {"c": [{"l": "masunaka"}, {"l": "lekya"}], "l": "pigo"}, {"l": "natrise"}, {"l": "triestabo"}], "l": "lepilubu"}], "l": "pekyaflebono"}], "l": "nekamakyazo"}], "l": "ianflotriflo"}, {"c": [{"c": [{"l": "fuflesufle"}, {"c": [{"l": "armabo"}, {"c": [{"l": "pananebo"}, {"l": "lena"}, {"c": [{"l": "pipiokata"}, {"l": "kamapebu"}, {"l": "letrifuse"}, {"l": "kanosupe"}, {"l": "kobuko"}, {"l": "ikatri"}], "l": "bomafloka"}, {"l": "ketanogoko"}, {"l": "leflositaes"}], "l": "goespiseke"}], "l": "lenosubu"}, {"l": "leflotrima"}, {"l": "futrilefozo"}, {"c": [{"c": [{"l": "kyagobi"}], "l": "bokaestrina"}, {"l": "learno"}], "l": "noflebikeka"}], "l": "kasukyuke"}, {"c": [{"c": [{"l": "gofu"}, {"c": [{"l": "kokesunei"}, {"l": "sekyupio"}, {"l": "mazomaar"}, {"l": "bipe"}, {"c": [{"l": "zope"}, {"l": "kafle"}, {"l": "funasi"}, {"l": "gomafuarkyu"}, {"l": "nobufo"}], "l": "kafuluboes"}], "l": "sifo"}, {"l": "napepe"}, {"c": [{"c": [{"l": "nofo"}], "l": "zokyasuo"}], "l": "nagokokyu"}, {"c": [{"l": "tafobofloes"}, {"l": "ilekyufle"}, {"l": "espitatafu"}, {"l": "kebukekya"}], "l": "sikyakolefo"}, {"c": [{"l": "kyukepi"}, {"l": "lukosikyuke"}, {"l": "futaanko"}, {"l": "sibiflo"}, {"l": "artribiboes"}], "l": "fubopano"}], "l": "sikakatasi"}, {"c": [{"c": [{"c": [{"l": "bigozofobo"}, {"l": "kefu"}, {"l": "kyupies"}, {"l": "pakebolese"}], "l": "makatripi"}, {"l": "fues"}, {"l": "kyafuta"}, {"c": [{"l": "peflekafle"}, {"l": "kagonenaes"}, {"l": "bui"}, {"l": "obi"}], "l": "kozo"}], "l": "keannaflose"}, {"l": "piflo"}, {"l": "kanogofu"}, {"l": "sezota"}], "l": "talelepaka"}, {"l": "lupa"}, {"c": [{"l": "sebu"}, {"c": [{"l": "onebu"}], "l": "bolefose"}, {"c": [{"l": "funo"}, {"l": "paipikase"}, {"l": "fusiananse"}, {"l": "flezobu"}, {"c": [{"l": "kyago"}, {"l": "opisu"}, {"l": "fuzokoko"}], "l": "pamapikogo"}, {"l": "takyapesu"}], "l": "bofulefle"}, {"l": "sitri"}, {"c": [{"l": "nefleko"}, {"l": "onapapa"}, {"l": "pimapema"}, {"l": "bikaespe"}, {"c": [{"l": "nopa"}, {"l": "flobo"}, {"l": "nanai"}, {"l": "olesenofu"}, {"l": "letatri"}, {"l": "pafleine"}, {"l": "kobuko"}], "l": "fuzo"}, {"l": "kake"}], "l": "esankyuar"}], "l": "sebike"}, {"c": [{"c": [{"l": "kaflotrisitri"}, {"l": "flobo"}], "l": "triseo"}, {"l": "kagoino"}, {"l": "pazosi"}, {"l": "flekasego"}], "l": "kepiko"}, {"l": "luzosuta"}], "l": "fuflofu"}, {"l": "flekogo"}, {"c": [{"c": [{"c": [{"l": "papepafo"}, {"l": "ilusu"}, {"c": [{"l": "bokona"}, {"l": "oma"}, {"l": "kyusenefulu"}], "l": "kyalekaolu"}, {"l": "iarkope"}, {"l": "sisuse"}, {"l": "trian"}, {"c": [{"l": "sebi"}], "l": "ile"}], "l": "susebi"}], "l": "obukyatrifu"}, {"c": [{"l": "fuoan"}, {"c": [{"l": "foanbope"}, {"l": "nobues"}, {"c": [{"l": "fuarsita"}, {"l": "kabotrifu"}, {"l": "bipi"}, {"l": "leflefuta"}], "l": "nafugobo"}, {"l": "antrikyu"}, {"l": "keboseofle"}], "l": "espe"}, {"l": "nelei"}, {"l": "panakyapigo"}, {"c": [{"l": "kobunosizo"}, {"l": "trimabu"}, {"l": "masiarzo"}], "l": "noi"}, {"l": "keopitaka"}], "l": "ibi"}, {"c": [{"l": "oespa"}, {"c": [{"l": "fui"}, {"c": [{"l": "buleigotri"}, {"l": "zobuflefu"}, {"l": "nepebi"}, {"l": "pikyuanfokyu"}, {"l": "lepafobugo"}, {"l": "maesesar"}, {"l": "boespi"}], "l": "gonokapafle"}, {"c": [{"l": "pibitako"}, {"l": "flefusibofo"}, {"l": "gogo"}, {"l": "ipekya"}], "l": "ipika"}], "l": "paanankya"}, {"l": "ikyu"}, {"c": [{"l": "sefugo"}, {"c": [{"l": "paono"}, {"l": "flozoke"}, {"l": "espimaita"}, {"l": "sutribose"}, {"l": "nokyanapeta"}, {"l": "butrifufle"}], "l": "kyakofle"}, {"l": "bisupe"}], "l": "tripakoi"}], "l": "noesnepi"}, {"c": [{"c": [{"l": "kyapa"}], "l": "isugo"}, {"l": "pakelu"}, {"c": [{"l": "pafu"}, {"c": [{"l": "fukese"}, {"l": "oflema"}, {"l": "neluanno"}], "l": "pikobibu"}], "l": "bugose"}, {"l": "bokofunale"}, {"l": "floi"}, {"l": "esfleta"}], "l": "tafleesse"}, {"l": "zobuflo"}], "l": "boeskelena"}, {"c": [{"l": "zoluka"}, {"c": [{"c": [{"c": [{"l": "lukaboiar"}, {"l": "kyagokaselu"}, {"l": "lukearzose"}, {"l": "eskyabomalu"}, {"l": "maansi"}], "l": "luma"}, {"l": "kepebupisi"}, {"c": [{"l": "flokoan"}, {"l": "boanpa"}], "l": "okyugotri"}, {"l": "nekazoes"}, {"l": "fotrifle"}, {"l": "flenolebino"}, {"l": "flobu"}], "l": "fupi"}, {"c": [{"l": "kyubi"}, {"l": "fuflezo"}], "l": "pabo"}], "l": "papelukyapa"}, {"c": [{"l": "nasu"}, {"l": "sekyafobu"}], "l": "luzotripifu"}], "l": "sunefle"}], "l": "kole"}, {"c": [{"l": "kebokyumaes"}], "l": "zole"}, {"c": [{"l": "lenogo"}, {"c": [{"c": [{"l": "pekatrisusi"}, {"l": "makyale"}, {"c": [{"l": "triflosezo"}], "l": "futriarbu"}, {"l": "luseflekyues"}], "l": "koleogo"}, {"l": "pamakoar"}, {"l": "pisunepabu"}], "l": "bilupa"}, {"c": [{"l": "flotrinoflo"}, {"c": [{"c": [{"l": "leko"}, {"l": "ilebi"}], "l": "gofleflo"}, {"l": "ifuflena"}, {"l": "anpi"}, {"c": [{"l": "arke"}, {"c": [{"l": "kyafloarflema"}, {"l": "kozopapefu"}], "l": "anmape"}], "l": "sui"}, {"c": [{"c": [{"l": "patapakyu"}, {"l": "pefuinoma"}, {"l": "zozono"}, {"l": "sukokyubipi"}], "l": "fokyu"}, {"l": "bolu"}, {"l": "gooboan"}, {"l": "fulu"}, {"c": [{"l": "lelu"}, {"l": "kyuanpifu"}, {"l": "fufotripa"}, {"l": "kolunoseno"}], "l": "eskaes"}], "l": "zoo"}], "l": "kyunobui"}, {"l": "ankyase"}, {"l": "kyakebui"}, {"c": [{"l": "tripekya"}, {"c": [{"c": [{"l": "anpiflei"}, {"l": "fofoke"}, {"l": "tamapane"}], "l": "gobu"}, {"l": "zonepakebu"}, {"l": "fopenoka"}, {"l": "okosifu"}, {"l": "mapaesfo"}, {"l": "nozoobima"}], "l": "selegono"}, {"l": "lukyu"}, {"l": "futribii"}, {"l": "kotri"}], "l": "espego"}, {"l": "noi"}], "l": "esleiflo"}, {"c": [{"l": "bisuka"}, {"c": [{"c": [{"l": "pafukyanata"}], "l": "sipi"}], "l": "netrino"}, {"c": [{"c": [{"l": "bitri"}], "l": "triletriko"}, {"l": "tabu"}, {"c": [{"l": "sisuan"}], "l": "kaokyakokyu"}, {"l": "nepe"}, {"l": "pafu"}], "l": "naanobupa"}, {"l": "piargoko"}], "l": "nasefu"}, {"c": [{"l": "siboes"}, {"c": [{"l": "flefupisuse"}, {"l": "pele"}, {"l": "kyaikane"}], "l": "kyusufobo"}, {"c": [{"l": "butri"}, {"c": [{"l": "iarkyafuno"}, {"l": "lutrisi"}, {"l": "pefo"}, {"l": "siikya"}, {"l": "ipe"}, {"l": "obonosi"}, {"l": "noflo"}], "l": "fukakya"}, {"c": [{"l": "noespaflele"}, {"l": "sueskyubu"}, {"l": "fofopi"}, {"l": "kyasi"}, {"l": "lubifu"}, {"l": "goflobilu"}], "l": "suiestafo"}, {"c": [{"c": [{"l": "anpakase"}, {"l": "lusi"}, {"l": "bikyazoilu"}], "l": "anfleanpatri"}, {"l": "arzolego"}, {"l": "ieszo"}, {"l": "anbioes"}, {"c": [{"l": "pepi"}, {"l": "bipaflotri"}, {"l": "goboianno"}, {"l": "pase"}, {"l": "anpakya"}], "l": "eszo"}], "l": "anbuespa"}, {"c": [{"l": "naike"}, {"l": "kyunana"}, {"l": "nakeieske"}, {"l": "anpase"}, {"c": [{"l": "lukotaar"}], "l": "suoarmakyu"}, {"l": "trise"}, {"c": [{"l": "seke"}, {"l": "sisu"}, {"l": "tagonokole"}, {"l": "anpasiolu"}, {"l": "fuogogokyu"}, {"l": "esbifle"}, {"l": "estapinear"}], "l": "zopa"}], "l": "ibufle"}, {"l": "kobofubi"}], "l": "zokya"}, {"l": "sebiikya"}, {"l": "sukeflekeke"}, {"l": "nosubu"}, {"c": [{"c": [{"l": "ankofotries"}, {"l": "kobikoi"}, {"l": "konone"}], "l": "konearkya"}, {"l": "pafoboko"}, {"c": [{"c": [{"l": "esta"}, {"l": "zofukya"}, {"l": "mapipe"}, {"l": "nako"}, {"l": "nakokyakoo"}, {"l": "nopaarbian"}], "l": "funatalesi"}], "l": "papaan"}], "l": "pikya"}], "l": "kyaio"}], "l": "trikya"}, {"c": [{"l": "petrimane"}, {"l": "lukyananai"}, {"l": "keoanse"}, {"c": [{"l": "natrikakyabo"}, {"c": [{"c": [{"l": "kenofuanke"}, {"l": "fokosuiflo"}, {"l": "kofloimapa"}, {"c": [{"l": "bukoko"}, {"l": "ile"}], "l": "kyule"}, {"c": [{"l": "oka"}, {"l": "kyufose"}, {"l": "antrikoar"}], "l": "nakeflesear"}, {"l": "flogo"}, {"l": "nelufotase"}], "l": "pakyufope"}, {"l": "pimanabu"}, {"l": "eske"}, {"c": [{"l": "pepeko"}, {"l": "palesinoke"}, {"l": "near"}, {"l": "kofufle"}, {"l": "flokebu"}], "l": "floo"}, {"l": "kaflokyabose"}, {"l": "mapi"}, {"l": "anko"}], "l": "bobo"}, {"l": "okozolubo"}, {"l": "eske"}, {"c": [{"l": "okoarfu"}], "l": "arnatai"}, {"l": "sina"}, {"c": [{"l": "seta"}, {"l": "nazokyubi"}], "l": "suantri"}], "l": "kyaesar"}], "l": "biike"}, {"l": "espe"}, {"l": "peno"}], "l": "sebo"}, {"c": [{"c": [{"c": [{"c": [{"c": [{"l": "fone"}, {"l": "kabi"}], "l": "zofletai"}, {"l": "bipaflokafu"}, {"c": [{"l": "essui"}, {"c": [{"l": "kesikase"}], "l": "suanpe"}, {"l": "lufupi"}, {"l": "imasi"}], "l": "lepeokekyu"}, {"l": "ibikasule"}, {"l": "esflesu"}], "l": "sulukei"}, {"c": [{"l": "kyuleka"}, {"l": "esketri"}, {"c": [{"l": "penabumafle"}, {"l": "fofonesu"}, {"c": [{"l": "obibo"}, {"l": "zozo"}], "l": "arbuar"}, {"c": [{"l": "pekyakebuan"}, {"l": "fusepakefle"}, {"l": "nabi"}, {"l": "lubutri"}, {"l": "fopeflene"}], "l": "olekya"}, {"l": "pesi"}, {"l": "kyasi"}], "l": "artriflopesi"}, {"c": [{"l": "bubuanfle"}, {"l": "essina"}, {"l": "kasiflosukya"}, {"l": "leansiflean"}], "l": "nao"}, {"l": "foko"}, {"l": "kesefleibo"}], "l": "kone"}], "l": "seiluluan"}, {"l": "tasino"}, {"c": [{"c": [{"l": "nepi"}], "l": "simapi"}, {"c": [{"l": "nakasu"}, {"c": [{"c": [{"l": "nosu"}, {"l": "kyuarkelu"}, {"l": "sefopebuta"}, {"l": "sueslees"}], "l": "trilefukeka"}], "l": "kanaes"}, {"c": [{"l": "binoanbi"}, {"l": "ifloke"}, {"l": "triar"}], "l": "bokalu"}, {"l": "arkyulefo"}, {"l": "antalena"}], "l": "boflegogosu"}, {"c": [{"c": [{"l": "noluiiar"}, {"l": "setabifo"}, {"c": [{"l": "ari"}, {"l": "noarkopi"}], "l": "flelearbo"}, {"l": "lean"}, {"l": "nokyanasika"}, {"c": [{"l": "bibikyu"}], "l": "osusinear"}, {"l": "pifumakope"}], "l": "esflosu"}], "l": "bopatrikyale"}, {"c": [{"c": [{"c": [{"l": "estrise"}, {"l": "takyu"}, {"l": "kobi"}, {"l": "opekyubu"}, {"l": "olufleke"}, {"l": "goka"}, {"l": "bianpekei"}], "l": "nabine"}], "l": "kogolean"}, {"l": "foflo"}, {"l": "folezo"}], "l": "piko"}, {"c": [{"l": "gomanona"}, {"c": [{"l": "sukeno"}, {"l": "nanaopa"}, {"l": "legolepa"}, {"l": "isipema"}], "l": "lefotriine"}, {"l": "taoar"}], "l": "butrizobi"}, {"c": [{"l": "fleo"}, {"l": "bugo"}, {"l": "kyaoboes"}], "l": "maflozoflobu"}, {"c": [{"l": "ipeleflene"}, {"l": "espe"}, {"c": [{"l": "paflozo"}, {"l": "bona"}, {"c": [{"l": "isulu"}, {"l": "kyuta"}, {"l": "netatrino"}, {"l": "kebu"}, {"l": "opisi"}, {"l": "floluta"}], "l": "anle"}, {"l": "trisees"}, {"l": "gobuboeso"}], "l": "goise"}], "l": "sepinoflo"}], "l": "kyuiari"}, {"c": [{"c": [{"l": "floan"}, {"c": [{"l": "leleflofo"}], "l": "zoar"}, {"l": "flonobulu"}, {"l": "bugokyafu"}, {"c": [{"c": [{"l": "patrizo"}, {"l": "pamaolefo"}, {"l": "bibu"}, {"l": "bifle"}], "l": "nakyabofloko"}, {"l": "bupileleno"}, {"l": "pafu"}, {"l": "bisuarbogo"}, {"l": "tribona"}, {"c": [{"l": "tripafu"}, {"l": "seeses"}, {"l": "ianpian"}, {"l": "fleoi"}, {"l": "senakoes"}, {"l": "kobuzopao"}, {"l": "sifoolu"}], "l": "isunasene"}], "l": "keanpino"}, {"l": "piflepego"}], "l": "sizobu"}, {"l": "seko"}, {"l": "anbulekya"}, {"l": "seta"}, {"l": "kotritri"}, {"l": "sekyusebita"}], "l": "oka"}, {"c": [{"l": "leleneko"}, {"c": [{"l": "maipeka"}, {"l": "naikake"}, {"l": "pimaanko"}, {"c": [{"l": "kyupamanolu"}, {"l": "piesgofoma"}, {"l": "kyupeessu"}, {"l": "kyamaluzono"}], "l": "arbi"}, {"l": "floflopaflees"}], "l": "triseartri"}, {"l": "lesema"}], "l": "biko"}, {"c": [{"c": [{"l": "namanaopi"}, {"c": [{"l": "nogoesflees"}, {"c": [{"l": "okyaonazo"}, {"l": "boitriesna"}], "l": "nonao"}, {"c": [{"l": "luko"}, {"l": "kosu"}, {"l": "kapagoi"}, {"l": "piarbita"}, {"l": "anbo"}, {"l": "sikyunaflear"}, {"l": "peeske"}], "l": "bunopiflofu"}, {"c": [{"l": "trikyu"}], "l": "bofubolulu"}, {"l": "naantriarbu"}, {"l": "kyutri"}, {"l": "bukogofuzo"}], "l": "kaesfota"}, {"l": "nasusekaar"}, {"c": [{"c": [{"l": "foluzobuna"}, {"l": "kekonobopa"}, {"l": "gogoarka"}, {"l": "arkokyufoo"}, {"l": "pegofule"}, {"l": "sigo"}, {"l": "anflego"}], "l": "flekanogole"}, {"l": "goleo"}, {"l": "espe"}, {"l": "ofupikya"}, {"l": "kalupa"}, {"l": "bofoo"}, {"l": "takyuesna"}], "l": "paogogo"}, {"l": "kyubosumabu"}], "l": "lepapipi"}, {"l": "kyupi"}], "l": "pileika"}, {"c": [{"l": "nanaarar"}, {"c": [{"l": "kyubutasu"}, {"l": "essukane"}], "l": "fletrikyusees"}], "l": "flekyukota"}], "l": "sufuan"}, {"l": "patrikyaseke"}], "l": "bita"}, {"c": [{"l": "arzofubikya"}, {"c": [{"c": [{"c": [{"l": "pefle"}, {"l": "esopeta"}, {"l": "oneesfopi"}], "l": "aran"}, {"c": [{"l": "zobubole"}, {"c": [{"c": [{"l": "mazo"}, {"l": "kanono"}, {"l": "zobizotrio"}], "l": "kyabiarke"}, {"l": "sezobo"}, {"c": [{"l": "pipepeleta"}, {"l": "kozo"}, {"l": "esestrigo"}, {"l": "kobuflo"}, {"l": "nekyule"}, {"l": "bisilekyupi"}], "l": "fofofota"}], "l": "paanpe"}, {"l": "flozogope"}, {"c": [{"c": [{"l": "fotasiibi"}, {"l": "sine"}, {"l": "zogoesfu"}], "l": "luarkyunoar"}, {"c": [{"l": "pitasuma"}, {"l": "sitri"}], "l": "zoesfopape"}, {"l": "eskekaluko"}], "l": "bupasetrian"}, {"l": "pibipesi"}], "l": "suikyuarfo"}, {"l": "eskoflokyuflo"}, {"c": [{"l": "zogo"}, {"c": [{"c": [{"l": "leta"}, {"l": "tata"}, {"l": "flezobifoar"}], "l": "lubunalupe"}, {"l": "kapapi"}, {"l": "bupekyubosu"}, {"l": "kyubosipi"}], "l": "kyabu"}, {"l": "supai"}, {"c": [{"l": "goartale"}, {"l": "anessutri"}, {"l": "tamakyu"}, {"c": [{"l": "binaflokyao"}, {"l": "esflean"}, {"l": "pile"}, {"l": "lekemaanpa"}], "l": "lukefupa"}, {"l": "pafukeflotri"}, {"l": "iko"}], "l": "bubuanlefle"}, {"l": "nanetapabo"}], "l": "fleeszo"}], "l": "zolusu"}], "l": "nabo"}], "l": "lubitrifu"}], "l": "konanopii"}
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]],"properties":{"label":"konanopii"}}]},"1":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[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,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,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283]],"properties":{"label":"bita"}},{"type":"Polygon","arcs":[[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,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-225,-224,-223,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-284,-283,-282,-281,-280,-279,-278,-277,-276,-275,-274,-273,-272,-271,-270,-269,-268,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,387,388]],"properties":{"label":"sebo"}},{"type":"Polygon","arcs":[[389,390,391,392,393,394,395,396,397,398,399,400,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,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,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]],"properties":{"label":"fuse"}},{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,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,206,207,208,209,210,211]],"properties":{"label":"arsifubo"}},{"type":"Polygon","arcs":[[-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-421,-420,-419,-418,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-406,-405,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,-294,-293,-292,-291,-290,-289,578,579,580,581,582,583,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,613,614,615,616,617,618,619,620,621,622,623,624,625,-476,-475,-474,-473,-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]],"properties":{"label":"tazoes"}},{"type":"Polygon","arcs":[[-520,-519,-518,-517,-516,-515,-514,-513,-512,-511,20,21,22,23,24,25,26,27,28,29,30,31,-401,-400,-399,-398,-397,-396,-395,-394,-393,-392,-391,-390,-510,-509,-508,-507,-506,-505,-504,-503,-502,-501,-500,-499,-498,-497,-496,-495,-494,-493,-492,-491,-490,-489,-488,-487,-486,-485,-484,-483,-482,-481,-480,-479,-478,-477,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-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,-585,-584,-583,-582,-581,-580,-579,-288,-287,-286,-285,-389,-388,197,198,199,200,201,202,203,204,205,-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]],"properties":{"label":"naseifono"}},{"type":"Polygon","arcs":[[-384,-383,-382,-381,-380,-379,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-404,-403,-402,99,100,101,102,103,104,105,106,107,108,109,110,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-253,-387,-386,-385]],"properties":{"label":"lubitrifu"}}]},"2":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[626,627,628,154]],"properties":{"label":"zole"}},{"type":"Polygon","arcs":[[-384,629,-253,-387,-386,-385]],"properties":{"label":"arzofubikya"}},{"type":"Polygon","arcs":[[630,631,632,633,634,635,636,637,638,639,640,641,642,643,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,644,645,646,647,648,649,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]],"properties":{"label":"subise"}},{"type":"Polygon","arcs":[[-382,-381,-380,-379,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-404,-403,-402,99,100,101,102,103,104,105,106,107,108,109,110,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-630,-383]],"properties":{"label":"nabo"}},{"type":"Polygon","arcs":[[-520,-519,-518,-517,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,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-525,-524,-523,-522,-521]],"properties":{"label":"boka"}},{"type":"Polygon","arcs":[[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,718,255,256,257,258,259,260,261,262,263,264,265,266,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,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283]],"properties":{"label":"sufuan"}},{"type":"Polygon","arcs":[[569,570,571,572,573,574,575,576,577,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-634,-633,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]],"properties":{"label":"opi"}},{"type":"Polygon","arcs":[[389,390,391,392,393,394,395,396,397,398,399,400,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,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,506,507,508,509]],"properties":{"label":"floes"}},{"type":"Polygon","arcs":[[539,540,541,542,543,544,545,546,547,806,807,808,809,810,811,812,813,814,815,816,817,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,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]],"properties":{"label":"kapaankya"}},{"type":"Polygon","arcs":[[253,254,-719,250,251,252]],"properties":{"label":"patrikyaseke"}},{"type":"Polygon","arcs":[[0,1,2,3,4,-818,-817,-816,-815,-814,-813,-812,-811,-810,-809,-808,-807,548,549,550,551,552,553,554,555,556,557,558,559,206,207,208,209,210,211]],"properties":{"label":"flokyutrizo"}},{"type":"Polygon","arcs":[[818,819,820,821,-418,822]],"properties":{"label":"paneflo"}},{"type":"Polygon","arcs":[[823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,-225,-224,-223,-222,-221,-220,-219,-218,839,840,-281,-280,-279,-278,-277,-276,-275,-274,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870]],"properties":{"label":"biike"}},{"type":"Polygon","arcs":[[-841,-840,-217,-216,871,-282]],"properties":{"label":"espe"}},{"type":"Polygon","arcs":[[-822,-821,-820,-819,-823,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-406,-405,560,561,562,563,564,565,566,567,568,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,872,873,874,875,876,877,878,879,880,881,882,883,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-421,-420,-419]],"properties":{"label":"gopigopeflo"}},{"type":"Polygon","arcs":[[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,-584,-583,-582,-581,-580,-579,-288,-287,-286,-285,-389,-388,197,198,199,200,920]],"properties":{"label":"pii"}},{"type":"Polygon","arcs":[[587,588,589,921,922,923,924,925,926,-656,-655,-654,-653,-652,-651,-650,-649,-648,-647,-646,-645,-294,-293,-292,-291,-290,-289,578,579,580,581,582,583,584,585,586]],"properties":{"label":"koarfu"}},{"type":"Polygon","arcs":[[-283,-872,-215,-214,-213,-284]],"properties":{"label":"peno"}},{"type":"Polygon","arcs":[[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,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,190,191,192,193,194,195,196,387,388]],"properties":{"label":"ianflotriflo"}},{"type":"Polygon","arcs":[[953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,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,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-839,-838,-837,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,-861,-860,-859,-858,-857,-856,-855,-854,-853,-852,-851,-850,-849,-848,-847,-846,-845,-844,-843,-842,-273,-272,-271,-270,-269,-268,152,153,-629]],"properties":{"label":"trikya"}},{"type":"Polygon","arcs":[[-764,-763,71,72,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,-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]],"properties":{"label":"susu"}},{"type":"Polygon","arcs":[[-704,-703,-702,-701,-700,-699,-698,-697,1006,1007,1008,1009,1010,1011,-908,-907,-906,-905,-904,-903,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-890,-889,-888,-887,-886,-885,-921,201,202,203,204,205,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706,-705]],"properties":{"label":"kyata"}},{"type":"Polygon","arcs":[[-800,-1006,-1005,1012,-802,-801]],"properties":{"label":"ankyuzoessi"}},{"type":"Polygon","arcs":[[-735,-734,-733,-732,-731,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,-632,-631,-678,-677,-676,-675,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,-662,-661,-660,-659,-658,-657,-927,-926,-925,-924,-923,-922,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,-476,-475,-474,-473,-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,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-747,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-736]],"properties":{"label":"gosubuoi"}},{"type":"Polygon","arcs":[[-1013,-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,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,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,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,-806,-805,-804,-803]],"properties":{"label":"fopisinofu"}},{"type":"Polygon","arcs":[[-393,-392,-391,-390,1013,-394]],"properties":{"label":"ikyui"}},{"type":"Polygon","arcs":[[-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,-939,-938,-937,-936,-935,-934,-933,-932,-931,-930,-929,-928,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,-971,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,-959,-958,-957,-956,-955,-954,-628,-627,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,-953,-952,-951]],"properties":{"label":"kole"}},{"type":"Polygon","arcs":[[-912,-911,-910,-909,-1012,-1011,-1010,-1009,-1008,-1007,-696,-695,-694,-693,-692,-691,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,-478,-477,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-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,-585,-920,-919,-918,-917,-916,-915,-914,-913]],"properties":{"label":"olusu"}},{"type":"Polygon","arcs":[[-479,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1019,-1018,-1017,-1016,-1015,-690,-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-516,-515,-514,-513,-512,-511,20,21,22,23,24,25,26,27,28,29,30,31,-401,-400,-399,-398,-397,-396,-395,-1014,-510,-509,-508,-507,-506,-505,-504,-503,-502,-501,-500,-499,-498,-497,-496,-495,-494,-493,-492,-491,-490,-489,-488,-487,-486,-485,-484,-483,-482,-481,-480]],"properties":{"label":"gosule"}}]},"3":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[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,-584,-583,-582,-581,-580,-579,-288,-287,1030,1031,1032,1033,1034,893]],"properties":{"label":"kyupape"}},{"type":"Polygon","arcs":[[1035,1036,1037,1038,1,2,3,4,-818,-817,-816,-815,-814,-813,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,209,210,1059]],"properties":{"label":"bukyuisu"}},{"type":"Polygon","arcs":[[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,1060,1061,1062,1063,1064,-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,1065,1066,1067,1068,1069,1070]],"properties":{"label":"tribo"}},{"type":"Polygon","arcs":[[217,218,219,220,221,222,223,224,225,226,227,228,229,230,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,1083,1084,1085,1086,1087,216]],"properties":{"label":"kyuiari"}},{"type":"Polygon","arcs":[[1088,1089,1090,1091,1092,1093]],"properties":{"label":"seesgonese"}},{"type":"Polygon","arcs":[[-812,-811,-810,1094,-1041,-1040]],"properties":{"label":"bukopaselu"}},{"type":"Polygon","arcs":[[1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,243,244,245,246,247,248,1115,1116,1117,1118,1119,1120,261,262,263,264,265,266,111,112,113,114,115,116,117,118,119,120,121,122,123,1121,1122]],"properties":{"label":"pileika"}},{"type":"Polygon","arcs":[[1123,1124,1125,1126,1127,1128]],"properties":{"label":"tatri"}},{"type":"Polygon","arcs":[[1129,-700,-699,-698,-697,1006,1007,1008,1009,1010,1011,-908,-907,-906,-905,-904,-903,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-890,-889,-888,-887,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706]],"properties":{"label":"ketabono"}},{"type":"Polygon","arcs":[[818,819,820,821,-418,822]],"properties":{"label":"biluokyufu"}},{"type":"Polygon","arcs":[[-1092,-1091,-1090,-1089,1148,1149,1150,1151,47,48,49,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,788,789,1166,1167]],"properties":{"label":"ango"}},{"type":"Polygon","arcs":[[-292,1168,-646,-645,-294,-293]],"properties":{"label":"kanepa"}},{"type":"Polygon","arcs":[[1169,-1060,211]],"properties":{"label":"fotrifle"}},{"type":"Polygon","arcs":[[650,651,652,1170,1171,1172]],"properties":{"label":"fupaes"}},{"type":"Polygon","arcs":[[569,570,571,572,573,574,575,576,577,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-634,-633,719,720,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761]],"properties":{"label":"nakatritrike"}},{"type":"Polygon","arcs":[[1193,1194,-678,1195,1196,1197]],"properties":{"label":"gobui"}},{"type":"Polygon","arcs":[[1198,-763,71,1199,-1069]],"properties":{"label":"kyakya"}},{"type":"Polygon","arcs":[[1200,866,867,868,869,870]],"properties":{"label":"petrimane"}},{"type":"Polygon","arcs":[[825,826,827,828,829,830,831,832,833,834,835,836,837,838,-225,-224,-223,-222,-221,-220,-219,-218,839,840,-281,-280,-279,-278,-277,-276,-275,-274,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,1201,1202]],"properties":{"label":"kyaesar"}},{"type":"Polygon","arcs":[[735,736,1203,1204,1205,1206]],"properties":{"label":"zonole"}},{"type":"Polygon","arcs":[[-912,1207,1208,1209,-914,-913]],"properties":{"label":"supepi"}},{"type":"Polygon","arcs":[[700,1210,1211,697,698,699]],"properties":{"label":"flefloflebi"}},{"type":"Polygon","arcs":[[342,343,344,345,346,347,-971,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,-959,-958,-957,-956,-955,-954,-628,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222]],"properties":{"label":"sunefle"}},{"type":"Polygon","arcs":[[1223,-1141,-1140,-1139,-1138,-1137]],"properties":{"label":"lezo"}},{"type":"Polygon","arcs":[[953,954,1224,153,-629]],"properties":{"label":"lenogo"}},{"type":"Polygon","arcs":[[-1066,-765,-764,-1199,-1068,-1067]],"properties":{"label":"trisima"}},{"type":"Polygon","arcs":[[215,-1088,-1087,-1086,1225,214]],"properties":{"label":"tasino"}},{"type":"Polygon","arcs":[[-382,-381,-380,-379,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-404,-403,-402,99,100,101,102,103,104,105,106,107,108,109,110,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-630,-383]],"properties":{"label":"zolusu"}},{"type":"Polygon","arcs":[[1226,1227,25,26,27,28,29,30,31,-401,-400,-399,-398,-397,-396,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247]],"properties":{"label":"lees"}},{"type":"Polygon","arcs":[[1248,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,668,669,670,671,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287]],"properties":{"label":"pipibibine"}},{"type":"Polygon","arcs":[[1288,1289,1290,1291,1292,1293,1294,1295,-989,-988,-987,-986,-985,-984,-983,-982,-981,-980,-979,-978,-977,-976,-975,-974,-973,-972,73,74,75,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,464,465,466,467,1316,1317]],"properties":{"label":"pikokanake"}},{"type":"Polygon","arcs":[[1318,1319,1320,1321,1322,-651,-650,-649,-648,-647,-1169,-291,-290,-289,578,579,580,581,582,583,584,585,586,587,588,589,921,922,923,924,925,926,-656,-655,-654,-653]],"properties":{"label":"ikyupelear"}},{"type":"Polygon","arcs":[[630,631,632,633,634,635,636,637,638,639,640,641,642,643,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-1249,-1288,-1287,-1286,-1285,-1284,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,672,673,674,675,676,677]],"properties":{"label":"nolu"}},{"type":"Polygon","arcs":[[626,627,628,154]],"properties":{"label":"kebokyumaes"}},{"type":"Polygon","arcs":[[1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,-608,-607,-606,-605,-604,-603,-602,-601,-600,-599,-598,-597,-596,-595,-594,-593,-592,-591,-590,-589,-588,-587,-586,-585,-920,-919,-918,-917,-916,-915,-1210,-1209,1333,1334]],"properties":{"label":"letrikya"}},{"type":"Polygon","arcs":[[1335,1336,1337,1338,1339,1340,890,1341,-1032,-1031,-286,-285,-389,-388,197,198,1342]],"properties":{"label":"kaboka"}},{"type":"Polygon","arcs":[[863,864,865,-1201,823,1343]],"properties":{"label":"lukyananai"}},{"type":"Polygon","arcs":[[-479,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1019,-1018,-1017,-1016,-1015,-690,-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-516,-515,-514,-513,-512,-511,20,21,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,-488,-487,-486,-485,-484,-483,-482,-481,-480]],"properties":{"label":"nekyuzobi"}},{"type":"Polygon","arcs":[[212,213,-1226,-1085,-1084,142,143,144,145,146,147,148,149,150,151,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283]],"properties":{"label":"seiluluan"}},{"type":"Polygon","arcs":[[539,540,541,542,543,544,545,546,547,806,807,808,809,810,811,812,813,814,815,816,817,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,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]],"properties":{"label":"lesutrifle"}},{"type":"Polygon","arcs":[[-735,-734,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,-1127,-1126,1389,1390,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-747,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-736]],"properties":{"label":"bukyubofo"}},{"type":"Polygon","arcs":[[1391,1392,1393,1394,1395,1396,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,-1223,-1222,-1221,-1220,-1219,-1218,-1217,-1216,-1215,-1214,-1213,-627,155,156,157,158,159,160,161,162,163,164,165,1397,1398,1399,1400]],"properties":{"label":"boeskelena"}},{"type":"Polygon","arcs":[[231,232,233,234,235,236,237,238,239,240,241,242,-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1102,-1101,-1100,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,-1079,-1078,-1077,-1076,-1075,-1074,-1073,-1072]],"properties":{"label":"oka"}},{"type":"Polygon","arcs":[[-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,-939,-938,1413,1414,1415,183,184,185,186,187,188,189,-953,-952,-951]],"properties":{"label":"kasukyuke"}},{"type":"Polygon","arcs":[[260,-1121,-1120,-1119,-1118,-1117,-1116,249,718,255,256,257,258,259]],"properties":{"label":"flekyukota"}},{"type":"Polygon","arcs":[[861,862,-1344,824,-1203,-1202]],"properties":{"label":"keoanse"}},{"type":"Polygon","arcs":[[-466,-465,-464,-463,-1391,-1390,-1125,-1124,-1129,-1128,-1389,-1388,-1387,-1386,-1385,-1384,-1383,-1382,-1381,-1380,-1379,-1378,-1377,-1376,-1375,-1374,-1373,-1372,-1371,-1370,-1369,-1368,-1367,-1366,-1365,-1364,-733,-732,-731,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,-632,-631,-1195,-1194,1416,1417,1418,1419,1420,1421,1422,1423,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,-476,-475,-474,-473,-472,-471,-470,-469,-468,-467]],"properties":{"label":"ofomafobi"}},{"type":"Polygon","arcs":[[1424,1425,-1343,199]],"properties":{"label":"anfletabika"}},{"type":"Polygon","arcs":[[-704,-703,-702,-701,-1130,-705]],"properties":{"label":"leta"}},{"type":"Polygon","arcs":[[892,-1035,-1034,-1033,-1342,891]],"properties":{"label":"sibo"}},{"type":"Polygon","arcs":[[1426,-1340,-1339,-1338,-1337,1427]],"properties":{"label":"fonanakaan"}},{"type":"Polygon","arcs":[[-1327,-1326,-1325,-1324,1428,1429,-910,-909,-1012,-1011,-1010,-1009,-1008,-1007,-696,-695,-694,-693,-692,-691,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,-478,-477,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-613,-612,-611,-610,-609,-1333,-1332,-1331,-1330,-1329,-1328]],"properties":{"label":"kaka"}},{"type":"Polygon","arcs":[[1430,1431,-1428,-1336,-1426,1432]],"properties":{"label":"kezoluarflo"}},{"type":"Polygon","arcs":[[50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,762,763,1433,1434,1435,1436,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,-1166,-1165,-1164,-1163,-1162,-1161,-1160,-1159,-1158,-1157,-1156,-1155,-1154,-1153]],"properties":{"label":"aran"}},{"type":"Polygon","arcs":[[-1070,-1200,72,971,-1071]],"properties":{"label":"botrinata"}},{"type":"Polygon","arcs":[[1437,1438,961,962,963,964,965,966,967,968,969,970,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,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,-853,-852,-851,-850,-849,-848,-847,-846,-845,1460,1461,1462]],"properties":{"label":"esleiflo"}},{"type":"Polygon","arcs":[[1005,-799,-798,-797,-796,-795,-1065,-1064,-1063,-1062,-1061,1002,1003,1004]],"properties":{"label":"bufle"}},{"type":"Polygon","arcs":[[-1013,-1004,-1003,-1002,-1001,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-1296,-1295,-1294,-1293,-1292,-1291,-1290,-1289,-1318,-1317,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,-806,-805,-804,-803]],"properties":{"label":"buflo"}},{"type":"Polygon","arcs":[[389,1463,1464,507,508,509]],"properties":{"label":"bitrileanne"}},{"type":"Polygon","arcs":[[1465,1466,1467,1468,1469,1470,1471,1472,384,385,386,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-226,-839,-838,-837,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,-861,-860,-859,-858,-857,-856,-855,-854,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-1451,-1450,-1449,-1448,-1447,-1446,-1445,1473,1474,1475,1476]],"properties":{"label":"kyaio"}},{"type":"Polygon","arcs":[[884,885,886,887,888,889,-1341,-1427,-1432,-1431,-1433,-1425,200,920]],"properties":{"label":"kyuiar"}},{"type":"Polygon","arcs":[[-822,1477,1478,-421,-420,-419]],"properties":{"label":"noka"}},{"type":"Polygon","arcs":[[-558,1479,1480,1481,1482,1483,1484,1485,-1132,-1131,-886,-885,1486,1487,1488,203,204,205,-560,-559]],"properties":{"label":"maflotrilefo"}},{"type":"Polygon","arcs":[[-1228,-1227,-1248,1489,1490,24]],"properties":{"label":"lesuzopi"}},{"type":"Polygon","arcs":[[-1399,-1398,166,1491,1492]],"properties":{"label":"flekogo"}},{"type":"Polygon","arcs":[[-1464,390,391,392,393,394,395,396,397,398,399,400,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,-1152,-1151,-1150,-1149,-1094,1493,1494,1495,1496,-1167,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,506,-1465]],"properties":{"label":"maobo"}},{"type":"Polygon","arcs":[[-1039,-1038,-1037,-1036,-1170,0]],"properties":{"label":"nasukyamana"}},{"type":"Polygon","arcs":[[22,23,-1491,-1490,-1247,-1246,-1245,1497,1498,1499,1500,-494,-493,-492,-491,-490,-489,-1363,-1362,-1361,-1360,-1359,-1358,-1357,-1356,-1355,-1354,-1353,-1352,-1351,-1350,-1349,-1348,-1347,-1346,-1345]],"properties":{"label":"esnanekabi"}},{"type":"Polygon","arcs":[[-1415,-1414,-937,-936,-935,-934,-933,-932,-931,-930,-929,-928,312,313,314,315,316,317,318,319,320,321,322,323,-1397,-1396,-1395,-1394,-1393,-1392,-1401,-1400,-1493,-1492,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,-1416]],"properties":{"label":"fuflofu"}},{"type":"Polygon","arcs":[[-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-1230,-1229,-395,-1014,-510,-509,-508,-507,-506,-505,-504,-503,-502,-501,-500,-499,-498,-497,-496,-495,-1501,-1500,-1499,-1498,-1244,-1243,-1242,-1241,-1240,-1239]],"properties":{"label":"kokyukekose"}},{"type":"Polygon","arcs":[[-1437,-1436,-1435,-1434,764,765]],"properties":{"label":"fusuan"}},{"type":"Polygon","arcs":[[-1489,-1488,-1487,-921,201,202]],"properties":{"label":"flokyu"}},{"type":"Polygon","arcs":[[-1143,-1142,-1224,-1136,-1135,-1134,-1133,-1486,-1485,-1484,-1483,-1482,-1481,-1480,-557,-556,-555,-1148,-1147,-1146,-1145,-1144]],"properties":{"label":"oika"}},{"type":"Polygon","arcs":[[-1430,-1429,-1335,-1334,-1208,-911]],"properties":{"label":"flolumase"}},{"type":"Polygon","arcs":[[-1322,-1321,-1320,-1319,-652,-1323]],"properties":{"label":"trifope"}},{"type":"Polygon","arcs":[[-1051,-1050,-1049,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1095,-809,-808,-807,548,549,550,551,552,553,554,555,556,557,558,559,206,207,208,-1059,-1058,-1057,-1056,-1055,-1054,-1053,-1052]],"properties":{"label":"anlelutaar"}},{"type":"Polygon","arcs":[[-1175,-1174,721,722,723,724,725,726,727,728,729,730,731,732,733,734,-1207,-1206,-1205,-1204,737,738,739,740,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1176]],"properties":{"label":"kekeesesbo"}},{"type":"Polygon","arcs":[[-1478,-821,-820,-819,-823,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-406,-405,560,561,562,563,564,565,566,567,568,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,872,873,874,875,876,877,878,879,880,881,882,883,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-1479]],"properties":{"label":"nopa"}},{"type":"Polygon","arcs":[[-1300,-1299,-1298,-1297,76,77,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,458,459,460,461,462,463,-1316,-1315,-1314,-1313,-1312,-1311,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-1303,-1302,-1301]],"properties":{"label":"napifogota"}},{"type":"Polygon","arcs":[[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,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,190,191,192,193,194,195,196,387,388]],"properties":{"label":"nekamakyazo"}},{"type":"Polygon","arcs":[[-1494,-1093,-1168,-1497,-1496,-1495]],"properties":{"label":"kanakazo"}},{"type":"Polygon","arcs":[[-1505,-1504,1511,1512,-1507,-1506]],"properties":{"label":"zobukoo"}},{"type":"Polygon","arcs":[[-1440,373,374,375,376,377,378,379,380,381,382,383,-1473,-1472,-1471,-1470,-1469,-1468,-1467,-1466,-1477,-1476,-1475,-1474,-1444,-1443,-1442,-1441]],"properties":{"label":"nasefu"}},{"type":"Polygon","arcs":[[-1196,-677,-676,-675,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,-662,-661,-660,-659,-658,-657,-927,-926,-925,-924,-923,-922,590,591,592,593,594,595,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1198,-1197]],"properties":{"label":"peartrikyake"}},{"type":"Polygon","arcs":[[-520,-519,-518,-517,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,-1212,-1211,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-525,-524,-523,-522,-521]],"properties":{"label":"flear"}},{"type":"Polygon","arcs":[[-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,644,645,646,647,648,649,-1173,-1172,-1171,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-1264,-1263,-1262,-1261,-1260,-1259,-1258,-1257,-1256,-1255,-1254,-1253,-1252,-1251,-1250,-310,-309]],"properties":{"label":"mapepa"}},{"type":"Polygon","arcs":[[955,956,957,958,959,960,-1439,-1438,-1463,-1462,-1461,-844,-843,-842,-273,-272,-271,-270,-269,-268,152,-1225]],"properties":{"label":"bilupa"}},{"type":"Polygon","arcs":[[-1407,-1406,-1405,-1404,-1403,-1402,-1099,-1098,-1097,-1096,-1123,-1122,124,125,-1083,-1082,-1081,-1080,-1413,-1412,-1411,-1410,-1409,-1408]],"properties":{"label":"biko"}},{"type":"Polygon","arcs":[[-1503,-1502,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,-1511,-1510,-1509,-1508,-1513,-1512]],"properties":{"label":"ararkanofo"}}]},"4":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[1513,1514,1515,1516,1517,1518]],"properties":{"label":"ankyase"}},{"type":"Polygon","arcs":[[-1051,-1050,-1049,-1048,-1047,-1046,-1045,-1044,1519,1520,-808,-807,548,549,550,551,552,553,554,555,556,557,558,559,206,207,208,-1059,-1058,-1057,-1056,-1055,-1054,-1053,-1052]],"properties":{"label":"netri"}},{"type":"Polygon","arcs":[[-706,1129,-700,-699,-698,-697,1006,1007,1008,1009,1010,1011,-908,-907,-906,-905,-904,-903,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542]],"properties":{"label":"fuiikyase"}},{"type":"Polygon","arcs":[[1543,685,1544,1545,1546,1547]],"properties":{"label":"kepefuna"}},{"type":"Polygon","arcs":[[1548,-425,-424,-423,-422,-1479]],"properties":{"label":"busi"}},{"type":"Polygon","arcs":[[1549,-222,-221,-220,-219,1550]],"properties":{"label":"arnatai"}},{"type":"Polygon","arcs":[[1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,160,161,162,163,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578]],"properties":{"label":"noesnepi"}},{"type":"Polygon","arcs":[[-1469,1579,1580,-1472,-1471,-1470]],"properties":{"label":"piargoko"}},{"type":"Polygon","arcs":[[1581,1582,-229,-228,1583,1584]],"properties":{"label":"sukeflekeke"}},{"type":"Polygon","arcs":[[-1003,-1002,-1001,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-1296,-1295,-1294,-1293,-1292,-1291,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,500,501,502,503,504,505,-806,-805,1607,1608]],"properties":{"label":"sibifo"}},{"type":"Polygon","arcs":[[-1144,-1143,-1142,-1224,-1136,1609]],"properties":{"label":"kaboluna"}},{"type":"Polygon","arcs":[[-397,-396,1228,1610,1611,1612]],"properties":{"label":"flokekotri"}},{"type":"Polygon","arcs":[[223,224,225,226,227,228,229,230,1071,1072,1073,1613,1614,1615,1616,1617,1618,1619,1620,1621,221,222]],"properties":{"label":"bopatrikyale"}},{"type":"Polygon","arcs":[[-1442,1622,1623,-1474,-1444,-1443]],"properties":{"label":"netrino"}},{"type":"Polygon","arcs":[[-771,-770,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,-775,-774,-773,-772]],"properties":{"label":"sisies"}},{"type":"Polygon","arcs":[[-1066,-765,-764,-1199,-1068,-1067]],"properties":{"label":"arneke"}},{"type":"Polygon","arcs":[[1636,1637,1638,1415,183,184]],"properties":{"label":"noflebikeka"}},{"type":"Polygon","arcs":[[1639,-1100,1401,1402,1403,1640]],"properties":{"label":"anbulekya"}},{"type":"Polygon","arcs":[[894,895,896,897,898,899,900,901,902,903,904,1641,1642,1643,1644,1645,1646,913,914,915,916,917,918,919,-584,-583,-582,-581,-580,-579,-288,-287,1030,1031,1032,1033,1034,893]],"properties":{"label":"napesule"}},{"type":"Polygon","arcs":[[1647,-1090,-1089,1148,1149,1150,1151,47,48,49,1152,1153,1154,1155,1156,1157,1158,1159,1160]],"properties":{"label":"sefoanoke"}},{"type":"Polygon","arcs":[[56,57,1648,1649,1650,1651,1652,1653,1654,1655,778,779,780,781,782,783,784,785,786,787,-1166,-1165,-1164,-1163,-1162,-1161,-1160,-1159,-1158,-1157,1656,1657,1658,1659,1660,1661,1662]],"properties":{"label":"sipaes"}},{"type":"Polygon","arcs":[[1663,1664,1665,1666,1298,1299,1300,1301,1302,1303]],"properties":{"label":"flomano"}},{"type":"Polygon","arcs":[[1667,1668,1669,-736,-735,1670]],"properties":{"label":"pine"}},{"type":"Polygon","arcs":[[-479,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1019,1671,1672,1673,1358,1359,1360,1361,1362,-488,-487,-486,-485,-484,-483,-482,-481,-480]],"properties":{"label":"bifo"}},{"type":"Polygon","arcs":[[-1488,-1487,-921,201,1674]],"properties":{"label":"pizokasu"}},{"type":"Polygon","arcs":[[-638,-637,-636,1675,1676,1677,1678,1679,1177,1178,1179,1180,1680,1681,1682,1683,1684,1685,1686,-641,-640,-639]],"properties":{"label":"sususego"}},{"type":"Polygon","arcs":[[1687,1688,1689,807,808,809]],"properties":{"label":"lusubibu"}},{"type":"Polygon","arcs":[[-792,-791,-790,-789,-788,-787,1690,1691,1692,1693,1694,1695,1063,1064,-794,-793]],"properties":{"label":"nozosususu"}},{"type":"Polygon","arcs":[[35,36,37,38,39,40,41,42,43,44,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,34]],"properties":{"label":"flekape"}},{"type":"Polygon","arcs":[[1716,1717,1718,-1582,1719,1720]],"properties":{"label":"sebiikya"}},{"type":"Polygon","arcs":[[1721,1722,374,375,376,377,378,379,380,381,382,383,-1473,-1581,-1580,-1468,-1467,-1466,-1477,-1476,-1475,-1624]],"properties":{"label":"naanobupa"}},{"type":"Polygon","arcs":[[972,973,974,975,976,1723,1724,1725,1726,1727,1728,-1629,-1628,-1627,-1626,-1625,-769,-768,-767,-766,1065,1066,1067,1068,1069,1070]],"properties":{"label":"pineno"}},{"type":"Polygon","arcs":[[-838,-837,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-871,-870,-869,1729,1730,-1717,-1721,-1720,-1585,1731,1732]],"properties":{"label":"pikya"}},{"type":"Polygon","arcs":[[1733,1734,1735,1736,1737,1738,1739,1740,-1614,1074,1075,1076,1077,1078,1079,1080,1081,1082,126,127,128,129,130,1741,1742,1743]],"properties":{"label":"sepinoflo"}},{"type":"Polygon","arcs":[[1744,-1462,1745,-272,1746,1747]],"properties":{"label":"pamakoar"}},{"type":"Polygon","arcs":[[1748,1749,466,467,1316,1317]],"properties":{"label":"gookebone"}},{"type":"Polygon","arcs":[[-380,-379,-578,-577,-576,-575,-574,-573,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,110,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,1763,1764,1765,1766,1767,1768,-382,-381]],"properties":{"label":"suikyuarfo"}},{"type":"Polygon","arcs":[[-1171,653,1769,1770,1771,1772]],"properties":{"label":"futrizo"}},{"type":"Polygon","arcs":[[1773,-1772,1774,1775,1776,1777]],"properties":{"label":"lesubo"}},{"type":"Polygon","arcs":[[955,956,957,958,959,960,-1439,-1438,-1463,-1745,-1748,-1747,-271,-270,-269,-268,152,-1225]],"properties":{"label":"koleogo"}},{"type":"Polygon","arcs":[[-466,-465,-464,-463,-1391,-1390,-1125,-1124,-1129,-1128,-1389,-1388,-1387,-1386,-1385,-1384,-1383,-1382,-1381,-1380,-1379,-1378,-1377,-1376,-1375,-1374,-1373,-1372,-1371,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,614,615,616,617,618,619,620,621,622,623,624,625,-476,-475,-474,-473,-472,-471,-470,-469,-468,-467]],"properties":{"label":"kyusio"}},{"type":"Polygon","arcs":[[1791,1792,1793,1406,1794,1795]],"properties":{"label":"sekyusebita"}},{"type":"Polygon","arcs":[[1796,1797,1798,1799,1800,1801,-1401,-1400,-1493,1802,1803,168,1804,1805,1806,1807]],"properties":{"label":"kepiko"}},{"type":"Polygon","arcs":[[1325,1326,1327,1328,1329,1330,1331,1332,-608,-607,-606,-605,-604,-603,1808,1809,1810,1811,1812,1813]],"properties":{"label":"esfofoma"}},{"type":"Polygon","arcs":[[271,272,273,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,212,213,-1226,-1085,-1084,142,143,144,145,146,147,148,149,150,151,267,268,269,270]],"properties":{"label":"kone"}},{"type":"Polygon","arcs":[[1826,1827,1828,1829,-408,-407,-406,-405,560,561,562,563,564,565,566,567,568,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,1830]],"properties":{"label":"neflozokyugo"}},{"type":"Polygon","arcs":[[-1602,-1601,1831,1832,1833,1834,1835,1836,1837,1838,-1594,-1593,-1592,-1591,-1590,-1589,-1588,-1587,-1586,-1290,-1289,-1318,-1317,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,-1607,-1606,-1605,-1604,-1603]],"properties":{"label":"tasekokaflo"}},{"type":"Polygon","arcs":[[-556,-555,-1148,1839,-1480,-557]],"properties":{"label":"eszotrii"}},{"type":"Polygon","arcs":[[-1236,-1235,-1234,-1233,1840,1841,1842,1843,1844,-503,-502,-501,-500,-499,-498,-497,-496,-495,-1501,-1500,-1499,-1498,-1244,-1243,-1242,-1241,1845,1846]],"properties":{"label":"nei"}},{"type":"Polygon","arcs":[[-1238,-1237,-1847,-1846,-1240,-1239]],"properties":{"label":"inebo"}},{"type":"Polygon","arcs":[[1847,1848,320,321,322,323,-1397,-1396,-1395,-1394,-1393,-1392,-1802,-1801,-1800,-1799,-1798,-1797,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866]],"properties":{"label":"talelepaka"}},{"type":"Polygon","arcs":[[1475,1867,1469,1470,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877]],"properties":{"label":"kyusufobo"}},{"type":"Polygon","arcs":[[1878,1879,1880,-1176,-1175,1881]],"properties":{"label":"kyulearar"}},{"type":"Polygon","arcs":[[-1370,-1369,-1368,-1367,-1366,-1365,-1364,-733,-732,-731,-730,1882,1883,1884,1885,1886,1887,1888,1889,-1785,-1784,-1783,-1782,-1781,-1780,-1779]],"properties":{"label":"mamaneka"}},{"type":"Polygon","arcs":[[682,683,684,-1544,1890,1891]],"properties":{"label":"boookono"}},{"type":"Polygon","arcs":[[610,611,612,613,-1791,-1790,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,604,605,606,607,608,609]],"properties":{"label":"kyubo"}},{"type":"Polygon","arcs":[[1904,1905,1906,11]],"properties":{"label":"lebies"}},{"type":"Polygon","arcs":[[284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,1907,1908,1909,1910,1911,1912,1913,1914,195,196,387,388]],"properties":{"label":"konelu"}},{"type":"Polygon","arcs":[[-1328,-1327,-1326,-1325,-1324,1428,1915,1916,1917,1918]],"properties":{"label":"lefu"}},{"type":"Polygon","arcs":[[-1446,-1445,1473,1474,-1878,-1877,-1876,-1875,-1874,-1873,-1872,-1871,-1870,-1869,1471,1472,384,385,386,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-1583,-1719,-1718,-1731,-1730,-868,-867,-866,-865,-864,-863,-862,-861,-860,-859,-858,-857,-856,-855,-854,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-1451,-1450,-1449,-1448,-1447]],"properties":{"label":"zokya"}},{"type":"Polygon","arcs":[[1290,1919,1920,-1749,1288,1289]],"properties":{"label":"eskegosu"}},{"type":"Polygon","arcs":[[90,1921,1922,1923,1924]],"properties":{"label":"futritrioma"}},{"type":"Polygon","arcs":[[1925,909,910,911,1926,-1643]],"properties":{"label":"zomatriar"}},{"type":"Polygon","arcs":[[1927,1928,1929,811,812,813,814,815,816,817,5,6,7,8,9,10,-1907,1930,1931,1932,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,1933,-1689,1934]],"properties":{"label":"konoma"}},{"type":"Polygon","arcs":[[-528,-527,-526,-525,-524,-523,-522,1935,1936,1937,1938,1939,-520,-519,-518,-517,678,679,680,681,-1892,1940,1941,1942,712,713,714,715,716,717,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529]],"properties":{"label":"fobolebi"}},{"type":"Polygon","arcs":[[342,1943,1944,1220,1221,1222]],"properties":{"label":"zoluka"}},{"type":"Polygon","arcs":[[-1405,-1404,-1403,1945,-1123,-1122,124,125,-1083,-1082,-1081,-1080,-1413,-1412,-1411,-1410,1946,1947]],"properties":{"label":"triseartri"}},{"type":"Polygon","arcs":[[1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,243,244,245,246,247,248,1115,1116,1117,1118,1948,1949,1950,1951,1952,1120,261,262,263,264,265,266,111,112,113,114,115,116,117,118,119,120,121,122,123,1121,1122]],"properties":{"label":"lepapipi"}},{"type":"Polygon","arcs":[[-778,-777,-776,-1636,-1635,-1634,-1633,-1632,-1631,-1630,-1729,-1728,-1727,-1726,-1725,-1724,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1953,1954,1955,1956,-1694,-1693,-1692,-1691,-786,-785,-784,-783,-782,-781,-780,-779]],"properties":{"label":"arose"}},{"type":"Polygon","arcs":[[1957,1958,-334,-333,1959,1960]],"properties":{"label":"sufufleflozo"}},{"type":"Polygon","arcs":[[855,856,857,858,859,860,1201,1961,1962,1963,827,828,829,830,831,832,833,834,835,836,1964,1965,1966,1967,-279,-278,-277,-276,-275,-274,841,842,843,844,845,846,847,848,849,850,851,852,853,854]],"properties":{"label":"bobo"}},{"type":"Polygon","arcs":[[-1803,-1492,167,-1804]],"properties":{"label":"luzosuta"}},{"type":"Polygon","arcs":[[1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,-306,-305,-304,-303,-302,-301,-300,-299,1980,1981,1982,-1777,-1776,-1775,-1771,-1770,654,655,656,657,658,659,660,661,662,663,664,665,666,667,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-1264,1983,1984,1985,1986]],"properties":{"label":"pefufleflo"}},{"type":"Polygon","arcs":[[837,838,-225,1987,1988,-1965]],"properties":{"label":"okozolubo"}},{"type":"Polygon","arcs":[[1318,1319,1320,1321,1322,-651,-650,-649,-648,-647,-1169,-291,-290,-289,578,579,580,581,582,583,584,585,586,587,588,589,921,922,923,924,925,926,-656,-655,-654,-653]],"properties":{"label":"fomafu"}},{"type":"Polygon","arcs":[[-1648,1161,1162,1989,1990,-1091]],"properties":{"label":"pekyu"}},{"type":"Polygon","arcs":[[1991,-1102,-1101,-1640,1992,1993]],"properties":{"label":"seko"}},{"type":"Polygon","arcs":[[78,79,80,81,82,83,84,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,-1502]],"properties":{"label":"siar"}},{"type":"Polygon","arcs":[[-958,-957,-956,-955,-954,-628,1212,2015,2016,2017]],"properties":{"label":"luzotripifu"}},{"type":"Polygon","arcs":[[1323,1324,-1814,-1813,2018,2019,2020,2021,2022,2023,2024,2025,-592,-591,-590,-589,-588,-587,-586,-585,-920,-919,-918,-917,-916,-915,-1210,-1209,1333,1334]],"properties":{"label":"sefo"}},{"type":"Polygon","arcs":[[22,2026,2027,2028,2029,2030,2031,2032,2033,-1351,-1350,-1349,-1348,-1347,-1346,-1345]],"properties":{"label":"sunelear"}},{"type":"Polygon","arcs":[[-1464,390,391,392,393,394,395,2034,2035,2036,2037,2038,2039,2040,800,801,802,803,804,805,506,-1465]],"properties":{"label":"bufu"}},{"type":"Polygon","arcs":[[-308,-307,-1980,-1979,-1978,2041,2042,2043,2044,2045,-1251,-1250,-310,-309]],"properties":{"label":"fotri"}},{"type":"Polygon","arcs":[[-1988,-224,-223,-1550,2046,2047]],"properties":{"label":"eske"}},{"type":"Polygon","arcs":[[-796,-795,-1065,-1064,-1063,-1062,2048,2049,1005,-799,-798,-797]],"properties":{"label":"sunapa"}},{"type":"Polygon","arcs":[[-558,1479,1480,1481,2050,-559]],"properties":{"label":"noesta"}},{"type":"Polygon","arcs":[[729,730,731,732,733,734,-1207,-1206,-1205,-1204,737,738,739,740,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1881,-1880,-1879,2051,2052,2053,2054,2055,728]],"properties":{"label":"maibuna"}},{"type":"Polygon","arcs":[[-1440,373,-1723,-1722,-1623,-1441]],"properties":{"label":"bisuka"}},{"type":"Polygon","arcs":[[727,-2056,-2055,-2054,2056,726]],"properties":{"label":"kamafu"}},{"type":"Polygon","arcs":[[2057,2058,2059,2060,-336,-335,-1959,-1958,2061,2062,1265,1266,1267,1268,1269,1270,668,669,670,671,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,2063,2064,2065,2066]],"properties":{"label":"suleko"}},{"type":"Polygon","arcs":[[2067,-1993,-1641,1404,1405,-1794]],"properties":{"label":"seta"}},{"type":"Polygon","arcs":[[-2024,-2023,-2022,-2021,2068,2069,2070,2071,2072,2073,-594,-593,-2026,-2025]],"properties":{"label":"nalu"}},{"type":"Polygon","arcs":[[2074,1042,1043,1044,1045,1046]],"properties":{"label":"fleka"}},{"type":"Polygon","arcs":[[-2072,-2071,-2070,-2069,-2020,-2019,-1812,-1811,-1810,-1809,-602,-601,-600,-599,-598,-597,-596,-595,-2074,-2073]],"properties":{"label":"bifo"}},{"type":"Polygon","arcs":[[725,-2057,-2053,2075,723,724]],"properties":{"label":"netribu"}},{"type":"Polygon","arcs":[[1371,1372,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-747,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-1670,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,1369,1370]],"properties":{"label":"pianmaoke"}},{"type":"Polygon","arcs":[[2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,2106,2107]],"properties":{"label":"sulebifoar"}},{"type":"Polygon","arcs":[[-1884,-1883,-729,-728,-727,-726,2108,2109,2110,2111,2112,2113,2114,2115,2116,-1899,-1898,-1897,-1896,-1895,-1894,-1893,-1789,-1788,-1787,-1786,-1890,-1889,-1888,-1887,-1886,-1885]],"properties":{"label":"flofutaar"}},{"type":"Polygon","arcs":[[-1936,-521,-1940,-1939,-1938,-1937]],"properties":{"label":"sukyakase"}},{"type":"Polygon","arcs":[[-2076,-2052,-1882,-1174,721,722]],"properties":{"label":"biboke"}},{"type":"Polygon","arcs":[[1424,1425,-1343,199]],"properties":{"label":"kepebu"}},{"type":"Polygon","arcs":[[-1092,-1991,-1990,1163,1164,1165,788,789,1166,1167]],"properties":{"label":"leinaarfle"}},{"type":"Polygon","arcs":[[-1095,-809,-1521,-1520,-1043,-1042]],"properties":{"label":"netrimapene"}},{"type":"Polygon","arcs":[[1175,1176,-1680,-1679,-1678,2117]],"properties":{"label":"pakeesfo"}},{"type":"Polygon","arcs":[[-1962,1202,825,826,-1964,-1963]],"properties":{"label":"natrikakyabo"}},{"type":"Polygon","arcs":[[217,218,2118,2119,1087,216]],"properties":{"label":"simapi"}},{"type":"Polygon","arcs":[[30,31,-401,-400,-399,-398,-1613,2120,2121,2122,2123,2124,2125,2126,29]],"properties":{"label":"sikaarka"}},{"type":"Polygon","arcs":[[2127,2128,2129,2130,2131,2132,2133,1494,1495,1496,-1167,790,791,792,793,794,795,796,797,798,799,-2041,-2040,-2039,-2038,2134,2135,-1712,-1711,2136,2137,2138]],"properties":{"label":"opetrisubi"}},{"type":"Polygon","arcs":[[-2120,-2119,219,220,-1622,-1621,-1620,-1619,2139,2140,2141,2142,2143,2144,137,138,139,140,141,1083,1084,1085,1086]],"properties":{"label":"boflegogosu"}},{"type":"Polygon","arcs":[[886,887,2145,-1431,2146,885]],"properties":{"label":"noartritaan"}},{"type":"Polygon","arcs":[[-1415,-1414,-937,-936,-935,-934,-933,-932,-931,-930,-929,-928,312,313,314,315,316,317,318,319,-1849,-1848,-1867,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,179,180,181,182,-1416]],"properties":{"label":"sikakatasi"}},{"type":"Polygon","arcs":[[259,260,-1121,-1120,-1119,2158]],"properties":{"label":"nanaarar"}},{"type":"Polygon","arcs":[[890,1341,-1032,2159,1339,1340]],"properties":{"label":"fukesi"}},{"type":"Polygon","arcs":[[344,345,346,347,-971,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,-959,-2018,-2017,-2016,1213,1214,1215,1216,1217,1218,1219,-1945,-1944,343]],"properties":{"label":"papelukyapa"}},{"type":"Polygon","arcs":[[108,2160,-1760,-1759,-1758,-1757,-1756,-1755,-1754,-1753,-1752,-1751,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-404,-403,-402,99,100,101,102,103,104,105,106,107]],"properties":{"label":"fleeszo"}},{"type":"Polygon","arcs":[[2161,-2047,-1551,-218,839,2162]],"properties":{"label":"sina"}},{"type":"Polygon","arcs":[[-1221,-1220,2163,2164,2165,2166]],"properties":{"label":"zobuflo"}},{"type":"Polygon","arcs":[[-1012,2167,-1916,1429,-910,-909]],"properties":{"label":"peanes"}},{"type":"Polygon","arcs":[[-2160,-1031,-286,-285,2168,1338]],"properties":{"label":"koartaneko"}},{"type":"Polygon","arcs":[[-1489,-1675,202]],"properties":{"label":"kefusigo"}},{"type":"Polygon","arcs":[[-1735,-1734,-1744,-1743,-1742,131,132,2169,2170,2171,2172]],"properties":{"label":"maflozoflobu"}},{"type":"Polygon","arcs":[[-1966,-1989,-2048,-2162,-2163,840,-281,-280,-1968,-1967]],"properties":{"label":"suantri"}},{"type":"Polygon","arcs":[[2173,2174,2175,-1638,-1637,185]],"properties":{"label":"futrilefozo"}},{"type":"Polygon","arcs":[[872,2176,-1831,-750,-749,-748]],"properties":{"label":"flego"}},{"type":"Polygon","arcs":[[1251,1252,1253,2177,2178,1250]],"properties":{"label":"fubisikaar"}},{"type":"Polygon","arcs":[[2179,2180,2181,2182,2183,2184,2185,2186,-612,-611,-610,-609,-1333,-1332,-1331,-1330,2187,2188,2189,2190,2191,2192]],"properties":{"label":"paka"}},{"type":"Polygon","arcs":[[-1509,-1508,-1513,2193,-2012,-2011,-2010,-2009,-2008,-2007,-2006,-2005,-2004,-2003,-2002,-2001,-2000,-1999,-1998,-1997,-1996,-1995,85,86,87,88,89,-1925,-1924,2194,2195,428,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,-1511,-1510]],"properties":{"label":"bokyukobiko"}},{"type":"Polygon","arcs":[[1337,-2169,-389,-388,197,2196]],"properties":{"label":"kyukata"}},{"type":"Polygon","arcs":[[1173,1174,-2118,-1677,2197,720]],"properties":{"label":"nabo"}},{"type":"Polygon","arcs":[[2198,2199,-2035,396,397,2200]],"properties":{"label":"fomai"}},{"type":"Polygon","arcs":[[630,631,632,633,634,635,636,637,638,639,640,641,642,643,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-1249,-1288,-1287,-1286,-1285,-1284,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,672,673,674,675,676,677]],"properties":{"label":"neoesbi"}},{"type":"Polygon","arcs":[[1335,1336,-2197,198,1342]],"properties":{"label":"esfo"}},{"type":"Polygon","arcs":[[1026,1027,1028,1029,-478,-477,-626,-625,-624,-623,-622,-621,2201,2202,2203,2204,2205,2206]],"properties":{"label":"buar"}},{"type":"Polygon","arcs":[[-296,-295,644,645,646,647,648,649,-1173,-1172,-1773,-1774,-1778,-1983,-1982,-1981,-298,-297]],"properties":{"label":"kyusimafu"}},{"type":"Polygon","arcs":[[2207,2208,-1994,-2068,-1793,2209]],"properties":{"label":"kotritri"}},{"type":"Polygon","arcs":[[-413,-412,-411,-410,-409,-1830,-1829,-1828,-1827,-2177,873,874,875,876,877,878,879,2210,2211,2212,2213,2214]],"properties":{"label":"sutagoi"}},{"type":"Polygon","arcs":[[-1840,-1147,2215,2216,2217,-1481]],"properties":{"label":"sesuesbu"}},{"type":"Polygon","arcs":[[2218,2219,2220,-1194,1416,1417]],"properties":{"label":"sinelekyule"}},{"type":"Polygon","arcs":[[2221,-1536,-1535,-1534,-1533,-1532]],"properties":{"label":"pasi"}},{"type":"Polygon","arcs":[[-1010,-1009,-1008,-1007,-696,-695,-694,-693,-692,-691,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,-2207,-2206,2222,2223,2224,2225,-2183,-2182,-2181,-2180,-2193,-2192,-2191,-2190,-2189,-2188,-1329,-1919,-1918,-1917,-2168,-1011]],"properties":{"label":"triozopipi"}},{"type":"Polygon","arcs":[[-1769,-1768,-1767,-1766,-1765,-1764,-257,-256,-255,-254,-630,-383]],"properties":{"label":"aran"}},{"type":"Polygon","arcs":[[2226,-846,-845,1460,1461,1462]],"properties":{"label":"flotrinoflo"}},{"type":"Polygon","arcs":[[-1866,-1865,2227,-1859,-1858,-1857,-1856,-1855,-1854,-1853,-1852,-1851,-1850,-1808,-1807,-1806,-1805,169,170,171,172,173,174,175,176,177,178,-2158,-2157,-2156,-2155,-2154,-2153,-2152,-2151,-2150,-2149,-2148]],"properties":{"label":"sebike"}},{"type":"Polygon","arcs":[[-2117,-2116,-2115,-2114,-2113,-2112,-2111,-2110,-2109,-725,-724,-723,-722,-721,-720,-632,-631,-1195,-2221,-2220,-2219,1418,1419,1420,1421,1422,1423,596,597,598,599,600,601,602,603,-1904,-1903,-1902,-1901,-1900]],"properties":{"label":"lulepako"}},{"type":"Polygon","arcs":[[-1563,-1562,-1561,-1560,-1559,-1558,2228,2229,-2165,-2164,-1219,-1218,-1217,-1216,-1215,-1214,-1213,-627,155,156,157,158,159,-1565,-1564]],"properties":{"label":"tafleesse"}},{"type":"Polygon","arcs":[[-2228,-1864,-1863,-1862,-1861,-1860]],"properties":{"label":"lupa"}},{"type":"Polygon","arcs":[[-2178,1254,2230,2231,2232,2233]],"properties":{"label":"izokyu"}},{"type":"Polygon","arcs":[[-1611,1229,1230,2234,2235,2236]],"properties":{"label":"flogosusi"}},{"type":"Polygon","arcs":[[2237,-938,1413,1414,-1639,-2176]],"properties":{"label":"leflotrima"}},{"type":"Polygon","arcs":[[-2050,-2049,-1061,1002,1003,1004]],"properties":{"label":"flozonene"}},{"type":"Polygon","arcs":[[-1836,2238,-1595,-1839,-1838,-1837]],"properties":{"label":"kaflope"}},{"type":"Polygon","arcs":[[1292,1293,1294,1295,-989,-988,-987,-986,-985,-984,-983,-982,-981,-980,-979,-978,-977,-976,-975,-974,-973,-972,73,74,75,1296,1297,-1667,-1666,-1665,-1664,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,464,465,-1750,-1921,-1920,1291]],"properties":{"label":"luka"}},{"type":"Polygon","arcs":[[-2226,-2225,-2224,-2223,-2205,-2204,-2203,-2202,-620,-619,-618,-617,-616,-615,-614,-613,-2187,-2186,-2185,-2184]],"properties":{"label":"esi"}},{"type":"Polygon","arcs":[[2239,-1197,2240,-2105,2241,2242]],"properties":{"label":"nefo"}},{"type":"Polygon","arcs":[[-2227,1437,1438,961,962,963,964,965,966,967,968,969,970,348,349,350,351,352,353,354,355,2243,2244,2245,-1514,-1519,-1518,-1517,2246,1454,1455,1456,1457,1458,1459,-853,-852,-851,-850,-849,-848,-847]],"properties":{"label":"kyunobui"}},{"type":"Polygon","arcs":[[-1300,-1299,-1298,-1297,76,2247,2248,1504,1505,1506,1507,1508,1509,1510,458,459,460,461,462,463,-1316,-1315,-1314,-1313,-1312,-1311,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-1303,-1302,-1301]],"properties":{"label":"pafu"}},{"type":"Polygon","arcs":[[-820,-819,-823,-417,-416,-415,-414,-2215,-2214,-2213,-2212,-2211,880,881,882,883,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-1549,-1478,-821]],"properties":{"label":"tafuarpa"}},{"type":"Polygon","arcs":[[888,889,-1341,-1427,-1432,-2146]],"properties":{"label":"fopa"}},{"type":"Polygon","arcs":[[370,371,372,1439,2249,369]],"properties":{"label":"noi"}},{"type":"Polygon","arcs":[[719,-2198,-1676,-635,-634,-633]],"properties":{"label":"taoka"}},{"type":"Polygon","arcs":[[-1503,-2015,-2014,-2013,-2194,-1512]],"properties":{"label":"fokyukyu"}},{"type":"Polygon","arcs":[[-1099,-1098,-1097,-1096,-1946,-1402]],"properties":{"label":"lesema"}},{"type":"Polygon","arcs":[[328,329,330,331,332,333,334,335,336,337,338,339,340,341,-1223,-1222,-2167,-2166,-2230,-2229,-1557,-1556,-1555,-1554,-1553,-1552,-1579,-1578,-1577,-1576,-1575,-1574,-1573,-1572,2250,2251,2252,2253,2254,2255,2256,327]],"properties":{"label":"ibi"}},{"type":"Polygon","arcs":[[1198,-763,71,1199,-1069]],"properties":{"label":"fopeesikyu"}},{"type":"Polygon","arcs":[[-2245,-2244,356,357,358,359,360,361,362,363,364,365,366,367,368,-2250,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,2257,-1515,-2246]],"properties":{"label":"espego"}},{"type":"Polygon","arcs":[[50,2258,2259,-1155,-1154,-1153]],"properties":{"label":"aroes"}},{"type":"Polygon","arcs":[[2260,2261,2262,2263,751,752,753,754,755,756,2264,2265,2266,2267,2268,2269,2270,2271]],"properties":{"label":"bies"}},{"type":"Polygon","arcs":[[-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,300,301,302,303,304,305,306,307,308,309,310,311,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,190,191,192,193,194]],"properties":{"label":"pekyaflebono"}},{"type":"Polygon","arcs":[[-1941,-1891,-1548,-1547,-1546,-1545,686,687,688,689,690,691,692,693,694,695,696,-1212,-1211,701,702,703,704,705,706,707,708,709,710,711,-1943,-1942]],"properties":{"label":"sisikenose"}},{"type":"Polygon","arcs":[[569,570,571,572,573,574,575,576,577,-378,-377,-376,-375,-374,-373,2272,2273,2274,2275,-2270,-2269,-2268,-2267,-2266,-2265,757,758,759,760,761]],"properties":{"label":"onefulefle"}},{"type":"Polygon","arcs":[[-2235,1231,1232,1233,1234,2276]],"properties":{"label":"luflopa"}},{"type":"Polygon","arcs":[[2277,69,2278]],"properties":{"label":"sinagoluna"}},{"type":"Polygon","arcs":[[-1826,-1825,-1824,-1823,-1822,-1821,-1820,-1819,-1818,-1817,-1816,-1815,274,275,276,277,278,279,280,281,282,283]],"properties":{"label":"sulukei"}},{"type":"Polygon","arcs":[[416,417,418,2279,414,415]],"properties":{"label":"neta"}},{"type":"Polygon","arcs":[[1287,1248,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-2061,-2060,-2059,-2058,-2067,-2066,-2065,-2064]],"properties":{"label":"lupeo"}},{"type":"Polygon","arcs":[[-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,1249,-2179,-2234,-2233,-2232,-2231,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,-2063,-2062,-1961,-1960]],"properties":{"label":"pibosu"}},{"type":"Polygon","arcs":[[231,232,233,234,235,236,237,238,239,240,241,242,-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1992,-2209,-2208,-2210,-1792,-1796,-1795,1407,1408,1409,1410,1411,1412,-1079,-1078,-1077,-1076,-1075,-1074,-1073,-1072]],"properties":{"label":"sizobu"}},{"type":"Polygon","arcs":[[2280,2281,2282,-940,-939,-2238,-2175,-2174,186,187,188,189,-953,-952,-951,-950,-949,-948,-947,-946,-945,-944,-943,2283]],"properties":{"label":"lenosubu"}},{"type":"Polygon","arcs":[[-1013,-1004,-1609,-1608,-804,-803]],"properties":{"label":"kyusezotake"}},{"type":"Polygon","arcs":[[-2030,-2029,-2028,-2027,23,-1491,-1490,-1247,-1246,-1245,1497,1498,1499,1500,-494,-493,-492,-491,-490,-489,-1363,-1362,-1361,-1360,-1359,-1358,-1357,-1356,-1355,-1354,-1353,-1352,-2034,-2033,-2032,-2031]],"properties":{"label":"pesinepa"}},{"type":"Polygon","arcs":[[-2084,-2083,-2082,-2081,-2080,-2079,-2078,-2077,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,-1127,-1126,1389,1390,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-452,-451,-2086,-2085]],"properties":{"label":"keestatritri"}},{"type":"Polygon","arcs":[[257,258,-2159,-1118,-1117,-1116,249,718,255,256]],"properties":{"label":"fletrikyusees"}},{"type":"Polygon","arcs":[[-507,-506,2284,-1842,-1841,-1232,-1231,-1230,-1229,-395,-1014,-510,-509,-508]],"properties":{"label":"sefle"}},{"type":"Polygon","arcs":[[-2121,-1612,-2237,-2236,-2277,1235,1236,1237,2285,2286,-2123,-2122]],"properties":{"label":"flebi"}},{"type":"Polygon","arcs":[[1035,1036,1037,1038,1,2,3,4,-818,-817,-816,-815,-814,-813,1039,1040,1041,-2075,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,209,210,1059]],"properties":{"label":"natase"}},{"type":"Polygon","arcs":[[1465,1466,1467,1468,-1868,1476]],"properties":{"label":"siboes"}},{"type":"Polygon","arcs":[[51,52,53,54,55,-1663,-1662,-1661,-1660,-1659,-1658,-1657,-1156,-2260,-2259]],"properties":{"label":"flonema"}},{"type":"Polygon","arcs":[[1226,1227,25,26,27,28,-2127,-2126,-2125,-2124,-2287,-2286,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247]],"properties":{"label":"sunabilupe"}},{"type":"Polygon","arcs":[[1391,1392,1393,1394,1395,1396,324,325,326,-2257,-2256,-2255,-2254,-2253,-2252,-2251,-1571,-1570,-1569,-1568,-1567,-1566,164,165,1397,1398,1399,1400]],"properties":{"label":"obukyatrifu"}},{"type":"Polygon","arcs":[[-1146,-1145,-1610,-1135,2287,-2216]],"properties":{"label":"foan"}},{"type":"Polygon","arcs":[[1433,2288,-2279,70,762,763]],"properties":{"label":"fopapa"}},{"type":"Polygon","arcs":[[-1976,-1975,-1974,-1973,-1972,-1971,-1970,-1969,-1987,-1986,-1985,-1984,-1263,-1262,-1261,-1260,-1259,-1258,-1257,-1256,-1255,-1254,-1253,-1252,-2046,-2045,-2044,-2043,-2042,-1977]],"properties":{"label":"fulu"}},{"type":"Polygon","arcs":[[-1461,-844,-843,-842,-273,-1746]],"properties":{"label":"pisunepabu"}},{"type":"Polygon","arcs":[[1365,1366,1367,1368,-2096,-2095,-2094,-2093,-2092,-2091,-2090,-2089,-2088,-2087,-1669,-1668,-1671,-734,1363,1364]],"properties":{"label":"fozoflepa"}},{"type":"Polygon","arcs":[[-2285,-505,-504,-1845,-1844,-1843]],"properties":{"label":"neneomao"}},{"type":"Polygon","arcs":[[-2222,-1531,-1530,-1529,-1528,-1527,-1526,-1525,-1524,-1523,-1522,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-890,-889,-888,-887,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-1543,-1542,-1541,-1540,-1539,-1538,-1537]],"properties":{"label":"kena"}},{"type":"Polygon","arcs":[[-1700,-1699,-1698,-1697,45,46,-1152,-1151,-1150,-1149,-1094,1493,-2134,-2133,-2132,-2131,-2130,-2129,2289,2290,2291,2292,2293,-1705,-1704,-1703,-1702,-1701]],"properties":{"label":"noianbuke"}},{"type":"Polygon","arcs":[[91,92,93,94,95,96,97,98,401,402,403,404,405,406,407,408,409,410,411,412,413,-2280,419,420,421,422,423,424,425,426,427,-2196,-2195,-1923,-1922]],"properties":{"label":"pekobilulu"}},{"type":"Polygon","arcs":[[-1407,-1406,-1948,-1947,-1409,-1408]],"properties":{"label":"leleneko"}},{"type":"Polygon","arcs":[[32,33,-1716,-1715,-1714,-1713,-2136,-2135,-2037,-2036,-2200,-2199,-2201,398,399,400]],"properties":{"label":"kana"}},{"type":"Polygon","arcs":[[-1650,-1649,58,59,60,61,62,63,64,65,66,67,68,-2278,-2289,1434,1435,1436,766,767,768,769,770,771,772,773,774,775,776,777,-1656,-1655,-1654,-1653,-1652,-1651]],"properties":{"label":"pabu"}},{"type":"Polygon","arcs":[[-2258,1451,1452,1453,-2247,-1516]],"properties":{"label":"kyakebui"}},{"type":"Polygon","arcs":[[-1696,-1695,-1957,-1956,-1955,-1954,1001,1060,1061,1062]],"properties":{"label":"kyabisifleko"}},{"type":"Polygon","arcs":[[884,-2147,-1433,-1425,200,920]],"properties":{"label":"kakyabotaar"}},{"type":"Polygon","arcs":[[-1644,-1927,912,-1647,-1646,-1645]],"properties":{"label":"esgopebone"}},{"type":"Polygon","arcs":[[-1741,-1740,-1739,-1738,-1737,-1736,-2173,2294,2295,2296,2297,2298,2299,2300,2301,2302,-2143,-2142,-2141,-2140,-1618,-1617,-1616,-1615]],"properties":{"label":"piko"}},{"type":"Polygon","arcs":[[1119,-1953,-1952,-1951,-1950,-1949]],"properties":{"label":"kyupi"}},{"type":"Polygon","arcs":[[-2282,-2281,-2284,-942,-941,-2283]],"properties":{"label":"fuflesufle"}},{"type":"Polygon","arcs":[[750,-2264,-2263,-2262,-2261,-2272,-2271,-2276,-2275,-2274,-2273,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-644,-643,-642,-1687,-1686,-1685,-1684,-1683,-1682,-1681,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,741,742,743,744,745,746,747,748,749]],"properties":{"label":"neko"}},{"type":"Polygon","arcs":[[-2248,77,1501,1502,1503,-2249]],"properties":{"label":"lubitagosi"}},{"type":"Polygon","arcs":[[-1732,-1584,-227,-226,-839,-1733]],"properties":{"label":"nosubu"}},{"type":"Polygon","arcs":[[-2161,109,-1763,-1762,-1761]],"properties":{"label":"eskoflokyuflo"}},{"type":"Polygon","arcs":[[-1706,-2294,-2293,-2292,-2291,-2290,-2128,-2139,-2138,-2137,-1710,-1709,-1708,-1707]],"properties":{"label":"fofletaflo"}},{"type":"Polygon","arcs":[[906,907,908,-1926,-1642,905]],"properties":{"label":"letrinazokyu"}},{"type":"Polygon","arcs":[[-1929,-1928,-1935,-1688,810,-1930]],"properties":{"label":"fubioigo"}},{"type":"Polygon","arcs":[[-1196,-677,-676,-675,-2106,-2241]],"properties":{"label":"nanefufo"}},{"type":"Polygon","arcs":[[-1834,-1833,2303,-1596,-2239,-1835]],"properties":{"label":"ananse"}},{"type":"Polygon","arcs":[[-1832,-1600,-1599,-1598,-1597,-2304]],"properties":{"label":"leko"}},{"type":"Polygon","arcs":[[-1482,-2218,2304,-1485,-1484,-1483]],"properties":{"label":"lefosuflo"}},{"type":"Polygon","arcs":[[12,13,14,15,16,17,18,19,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,-1933,-1932,-1931,-1906,-1905]],"properties":{"label":"lekya"}},{"type":"Polygon","arcs":[[-2303,-2302,-2301,-2300,-2299,-2298,-2297,-2296,-2295,-2172,-2171,-2170,133,134,135,136,-2145,-2144]],"properties":{"label":"butrizobi"}},{"type":"Polygon","arcs":[[-1674,-1673,-1672,-1018,-1017,-1016,-1015,-690,-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-516,-515,-514,-513,-512,-511,20,21,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357]],"properties":{"label":"kakyafufuan"}},{"type":"Polygon","arcs":[[-1934,545,546,547,806,-1690]],"properties":{"label":"zona"}},{"type":"Polygon","arcs":[[-560,-2051,1482,1483,1484,1485,-1132,-1131,-886,-885,1486,1487,1488,203,204,205]],"properties":{"label":"boanpe"}},{"type":"Polygon","arcs":[[-2242,-2104,-2103,-2102,-2101,-2100,-2099,-2098,-2097,-2108,-2107,-662,-661,-660,-659,-658,-657,-927,-926,-925,-924,-923,-922,590,591,592,593,594,595,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1198,-2240,-2243]],"properties":{"label":"pike"}},{"type":"Polygon","arcs":[[-2217,-2288,-1134,-1133,-1486,-2305]],"properties":{"label":"sego"}}]},"5":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[2305,-427,-426,-1549,-1478,-821]],"properties":{"label":"foonegosi"}},{"type":"Polygon","arcs":[[-1171,653,1769,1770,1771,1772]],"properties":{"label":"sitakoar"}},{"type":"Polygon","arcs":[[-1622,2306,2307,2308,2309,2142,2143,2144,137,138,2310,2311,2312,220]],"properties":{"label":"bokalu"}},{"type":"Polygon","arcs":[[-1785,2313,2314,2315,1888,1889]],"properties":{"label":"esfokyuzo"}},{"type":"Polygon","arcs":[[2316,2317,2318,2319,2320,2321,-993,-992,-991,-990,-1296,-1295,-1294,-1293,-1292,-1291,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,500,501]],"properties":{"label":"kapego"}},{"type":"Polygon","arcs":[[-1783,-1782,-1781,2322,-2314,-1784]],"properties":{"label":"pikya"}},{"type":"Polygon","arcs":[[2323,2324,2325,-496,-495,-1501,-1500,-1499,-1498,-1244,-1243,-1242,-1241,1845,2326,2327]],"properties":{"label":"pinotrine"}},{"type":"Polygon","arcs":[[-1941,-1891,-1548,2328,2329,-1942]],"properties":{"label":"zotri"}},{"type":"Polygon","arcs":[[2330,2331,2332,2333,2334,2335]],"properties":{"label":"kapapi"}},{"type":"Polygon","arcs":[[2336,2025,-592,-591,-590,2337]],"properties":{"label":"kabukyu"}},{"type":"Polygon","arcs":[[1061,2338,-1955,-1954,1001,1060]],"properties":{"label":"namaes"}},{"type":"Polygon","arcs":[[1549,-222,-221,-220,-219,1550]],"properties":{"label":"okoarfu"}},{"type":"Polygon","arcs":[[2339,1443,1444,1445,2340,2341]],"properties":{"label":"lukyu"}},{"type":"Polygon","arcs":[[2342,-1172,-1773,-1774,-1778,-1983,2343,2344,2345,2346]],"properties":{"label":"nekyuflone"}},{"type":"Polygon","arcs":[[-1696,-1695,-1957,-1956,-2339,1062]],"properties":{"label":"trikokofu"}},{"type":"Polygon","arcs":[[-1779,-1370,-1369,-1368,2347,2348]],"properties":{"label":"sizo"}},{"type":"Polygon","arcs":[[-2295,-2172,-2171,2349,-2297,-2296]],"properties":{"label":"taoar"}},{"type":"Polygon","arcs":[[-794,2350,2351,1695,1063,1064]],"properties":{"label":"lekekenale"}},{"type":"Polygon","arcs":[[-2334,2352,2353,2058,2354,2355]],"properties":{"label":"bukemaarbi"}},{"type":"Polygon","arcs":[[-792,2356,2357,2358,-2351,-793]],"properties":{"label":"kyaifonesu"}},{"type":"Polygon","arcs":[[-1980,2359,2044,2360,-308,-307]],"properties":{"label":"subopifo"}},{"type":"Polygon","arcs":[[1637,1638,1415,183,2361]],"properties":{"label":"learno"}},{"type":"Polygon","arcs":[[646,2362,-2347,-2346,2363,645]],"properties":{"label":"kokyanepi"}},{"type":"Polygon","arcs":[[-1439,-1438,-1463,-1745,2364,960]],"properties":{"label":"luseflekyues"}},{"type":"Polygon","arcs":[[648,649,-1173,-2343,-2363,647]],"properties":{"label":"kyalu"}},{"type":"Polygon","arcs":[[-790,-789,-788,2365,-2357,-791]],"properties":{"label":"koko"}},{"type":"Polygon","arcs":[[-2145,2366,2367,-2300,-2299,-2298,-2350,-2170,133,134,135,136]],"properties":{"label":"lefotriine"}},{"type":"Polygon","arcs":[[2368,567,568,-762,-761,-760]],"properties":{"label":"neotrisi"}},{"type":"Polygon","arcs":[[-2366,-787,1690,1691,2369,-2358]],"properties":{"label":"pago"}},{"type":"Polygon","arcs":[[644,-2364,-2345,2370,-296,-295]],"properties":{"label":"boesfokyasu"}},{"type":"Polygon","arcs":[[-2359,-2370,1692,1693,1694,-2352]],"properties":{"label":"tafukyape"}},{"type":"Polygon","arcs":[[2037,2038,2371,392,2372,2036]],"properties":{"label":"kyabu"}},{"type":"Polygon","arcs":[[2373,2374,-1874,2375,2376,2377]],"properties":{"label":"butri"}},{"type":"Polygon","arcs":[[610,611,612,613,-1791,-1790,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,604,605,606,607,608,609]],"properties":{"label":"pizosikyu"}},{"type":"Polygon","arcs":[[2378,2379,2380,-758,-757,-756]],"properties":{"label":"masitribono"}},{"type":"Polygon","arcs":[[2381,2382,2383,2384,2385,2386,143,144,145,2387,2388]],"properties":{"label":"nao"}},{"type":"Polygon","arcs":[[1828,1829,-408,-407,-406,-405,560,561,562,563,564,565,2389,2390,-2380,-2379,-755,-754,-753,2391]],"properties":{"label":"kekeisupi"}},{"type":"Polygon","arcs":[[-1692,2392,2393,2394,2395,-1693]],"properties":{"label":"esfle"}},{"type":"Polygon","arcs":[[1636,-2362,184]],"properties":{"label":"bokaestrina"}},{"type":"Polygon","arcs":[[-931,2396,2397,2398,2399,-932]],"properties":{"label":"napepe"}},{"type":"Polygon","arcs":[[2400,289,290,291,2401,2402]],"properties":{"label":"futagofufle"}},{"type":"Polygon","arcs":[[959,-2365,-1748,2403,957,958]],"properties":{"label":"futriarbu"}},{"type":"Polygon","arcs":[[-786,-785,2404,2405,-2393,-1691]],"properties":{"label":"nenotapa"}},{"type":"Polygon","arcs":[[2406,2407,2408,2409,2410,2411,2412,2413,-550,-549,-548,-547]],"properties":{"label":"pile"}},{"type":"Polygon","arcs":[[1982,-1777,2414,2415,2416,1981]],"properties":{"label":"peleta"}},{"type":"Polygon","arcs":[[990,991,992,993,994,995,996,997,998,999,1000,1953,1954,1955,1956,-1694,-2396,-2395,-2394,-2406,-2405,-784,-783,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433]],"properties":{"label":"anfokobine"}},{"type":"Polygon","arcs":[[639,640,641,642,643,-360,-359,-358,-357,-356,-355,2434,2435,2436,2437,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,2438,2439,2440,2441,2442]],"properties":{"label":"bigoflosefle"}},{"type":"Polygon","arcs":[[27,2443,2444,2445,2446,2447,1239,1240,1241,2448,2449,2450,2451,26]],"properties":{"label":"flotri"}},{"type":"Polygon","arcs":[[2452,2453,2454,2455,2456,-2225]],"properties":{"label":"tata"}},{"type":"Polygon","arcs":[[2457,2458,2459,2460,874,875]],"properties":{"label":"lefupizosu"}},{"type":"Polygon","arcs":[[2461,2462,1686,-641,-640,-639]],"properties":{"label":"neboesike"}},{"type":"Polygon","arcs":[[2463,2464,2465,2466,1974,1975,1976,1977,1978,1979,-306,-305,-304,-303,-302,-301,-300,2467,2468,2469,2470,2471,2472,-2415,-1776,-1775,-1771,-1770,654,655,656,657,658,659,660,661,662,663,2473,2474,2475,2476]],"properties":{"label":"arkenefui"}},{"type":"Polygon","arcs":[[2477,1286,2063,2064,2065,2066]],"properties":{"label":"lefoflose"}},{"type":"Polygon","arcs":[[-2371,-2344,-1982,-1981,-298,-297]],"properties":{"label":"sunetafleka"}},{"type":"Polygon","arcs":[[-937,-936,-935,-934,-933,-2400,2478,2479,2154,2155,2156,2157,179,180,181,2480,2481,2482,-1414]],"properties":{"label":"sifo"}},{"type":"Polygon","arcs":[[-2391,-2390,566,-2369,-759,-2381]],"properties":{"label":"botribopaka"}},{"type":"Polygon","arcs":[[2483,2484,1838,-1594,-1593,-1592,-1591,-1590,-1589,2485,2486,2487,2488,2489,472,473,474,475,476,477,478,479,480,481,482,2490]],"properties":{"label":"gofle"}},{"type":"Polygon","arcs":[[1607,2491,2492,2493,2494,2495,2496,2497,-995,-994,-2322,-2321,-2320,-2319,-2318,-2317,502,503,504,505,-806,-805]],"properties":{"label":"flelegokapi"}},{"type":"Polygon","arcs":[[2498,2499,1941,1942,712,2500]],"properties":{"label":"esanokya"}},{"type":"Polygon","arcs":[[2501,2502,-648,-647,-1169,-291]],"properties":{"label":"kefutrizoke"}},{"type":"Polygon","arcs":[[2017,-958,-957,-956,-955,2503]],"properties":{"label":"nasu"}},{"type":"Polygon","arcs":[[2504,2505,2506,2507,2508,2509,2510,-881,-880,-879,2511,2512,2513,2514,2515,2516]],"properties":{"label":"kafu"}},{"type":"Polygon","arcs":[[2517,2518,2519,-2040,-2039,2520]],"properties":{"label":"suka"}},{"type":"Polygon","arcs":[[-1700,-1699,2521,2522,-1702,-1701]],"properties":{"label":"fopibo"}},{"type":"Polygon","arcs":[[-1894,2523,2524,2525,-1896,-1895]],"properties":{"label":"fopibies"}},{"type":"Polygon","arcs":[[2526,2527,2528,2529,-959,-2018,-2017,-2016,1213,1214]],"properties":{"label":"pabo"}},{"type":"Polygon","arcs":[[1271,1272,1273,2530,2531,2532,2533,2534,2535,2536,-2336,-2335,-2356,-2355,2059,2060,-336,-335,-1959,-1958,2061,2062,1265,1266,1267,1268,1269,1270,668,669,670,671]],"properties":{"label":"esfle"}},{"type":"Polygon","arcs":[[-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,300,301,2537,2538,2539,2540,2541,2542,192,193,194]],"properties":{"label":"ipapikyu"}},{"type":"Polygon","arcs":[[-1714,-1713,-2136,2543,2544,-1715]],"properties":{"label":"kyazopeone"}},{"type":"Polygon","arcs":[[835,836,1964,1965,2545,2546]],"properties":{"label":"anko"}},{"type":"Polygon","arcs":[[-2120,2547,2548,2549,2550,1086]],"properties":{"label":"nakasu"}},{"type":"Polygon","arcs":[[2138,2551,2552,2553,-2519,2554]],"properties":{"label":"buflekotri"}},{"type":"Polygon","arcs":[[2555,2556,-1787,-1786,-1890,-1889,-1888,-1887,-1886,2557,2558,2559,2560,2561,2562,-2525]],"properties":{"label":"fotriikeo"}},{"type":"Polygon","arcs":[[-2544,-2135,-2037,-2036,-2200,2563]],"properties":{"label":"kyuanesbo"}},{"type":"Polygon","arcs":[[-1095,-809,-1521,-1520,-1043,-1042]],"properties":{"label":"nape"}},{"type":"Polygon","arcs":[[-1716,-2545,-2564,-2199,2564,33]],"properties":{"label":"pabunakokya"}},{"type":"Polygon","arcs":[[-823,-417,-416,-415,-414,-2215,-2214,-2213,-2212,-2211,880,881,882,883,-440,-439,-438,-437,-436,-435,-434,-433,2565,2566]],"properties":{"label":"kyaflokyatriar"}},{"type":"Polygon","arcs":[[-2291,-2290,-2128,-2139,-2138,2567]],"properties":{"label":"luko"}},{"type":"Polygon","arcs":[[1826,1827,-2392,-752,-751,1830]],"properties":{"label":"arestri"}},{"type":"Polygon","arcs":[[2260,2568,2569,2269,2270,2271]],"properties":{"label":"fufle"}},{"type":"Polygon","arcs":[[2570,2571,2572,-365,2573,2574]],"properties":{"label":"pabuan"}},{"type":"Polygon","arcs":[[2575,-2292,-2568,-2137,-1710,-1709]],"properties":{"label":"noibo"}},{"type":"Polygon","arcs":[[2576,2577,2578,-649,-2503,2579]],"properties":{"label":"makyako"}},{"type":"Polygon","arcs":[[2580,2581,2582,2583,2584,2585,2586,2587,2588,-661,-660,-659,-658,-657,-927,-926,-925,-924]],"properties":{"label":"maleo"}},{"type":"Polygon","arcs":[[2589,2590,2591,2592,2593,2594,-2112,-2111,-2110,-2109,-725,-724,-723,-722,-721,-720,-632,-631,-1195,-2221,-2220,-2219,1418,1419,1420,1421,1422,1423,596,597]],"properties":{"label":"flefono"}},{"type":"Polygon","arcs":[[2595,2596,1322,-651,-650,-2579]],"properties":{"label":"kekyutago"}},{"type":"Polygon","arcs":[[2597,1319,1320,1321,-2597,2598,586,587,588,589,921,922,923,924,925,926,-656,2599]],"properties":{"label":"keo"}},{"type":"Polygon","arcs":[[1918,-1328,-1327,-1326,-1325,2600]],"properties":{"label":"nobu"}},{"type":"Polygon","arcs":[[2601,2602,-2338,-589,-588,2603]],"properties":{"label":"fofotane"}},{"type":"Polygon","arcs":[[-1704,2604,2605,2606,2293,-1705]],"properties":{"label":"biarpapatri"}},{"type":"Polygon","arcs":[[2607,-1317,468,469,470,2608]],"properties":{"label":"fosupiar"}},{"type":"Polygon","arcs":[[1333,2609,2610,2611,2612,2613,2614,2615,2022,2023,2024,-2337,-2603,-2602,-2604,-587,-586,-585,-920,-919,-918,-917,-916,-915,-1210,-1209]],"properties":{"label":"lekyafobo"}},{"type":"Polygon","arcs":[[46,-1152,-1151,-1150,-1149,-1094,1493,-2134,-2133,-2132,-2131,-2130,-2129,2289,2290,2291,2292,-2607,-2606,-2605,-1703,-2523,2616,2617,2618,2619,2620]],"properties":{"label":"siseseoi"}},{"type":"Polygon","arcs":[[-2526,-2563,-2562,2621,-1898,-1897]],"properties":{"label":"pekya"}},{"type":"Polygon","arcs":[[2622,1506,1507,1508,2623,2624]],"properties":{"label":"goespakozo"}},{"type":"Polygon","arcs":[[-981,2625,2626,2627,2628,-982]],"properties":{"label":"arkeka"}},{"type":"Polygon","arcs":[[2629,2630,-2491,483,484,2631]],"properties":{"label":"sipipezo"}},{"type":"Polygon","arcs":[[-1885,-1884,-1883,-729,-728,-727,-726,2108,2109,2110,2111,2112,2113,2114,2115,2116,-1899,-2622,-2561,-2560,-2559,-2558]],"properties":{"label":"flokyubu"}},{"type":"Polygon","arcs":[[2632,-2402,292,2633,2634,2635]],"properties":{"label":"floi"}},{"type":"Polygon","arcs":[[-2150,-2149,2636,-1858,2637,2638]],"properties":{"label":"bolefose"}},{"type":"Polygon","arcs":[[2639,2640,1292,1293,1294,1295,-989,-988,-987,-986,-985,-984,-983,-2629,2641,2642,1306,1307,1308,1309,1310,1311,1312,2643,2644,2645]],"properties":{"label":"naflele"}},{"type":"Polygon","arcs":[[488,2646,-2632,485,486,487]],"properties":{"label":"bukesikyu"}},{"type":"Polygon","arcs":[[-1561,2647,158,2648]],"properties":{"label":"pakelu"}},{"type":"Polygon","arcs":[[1857,1858,1859,2649,2650,1856]],"properties":{"label":"sezota"}},{"type":"Polygon","arcs":[[217,218,2118,2119,1087,216]],"properties":{"label":"nepi"}},{"type":"Polygon","arcs":[[-1602,-1601,1831,1832,1833,1834,1835,1836,1837,-2485,-2484,-2631,-2630,-2647,489,490,491,492,493,494,495,496,497,498,499,-1607,-1606,-1605,-1604,-1603]],"properties":{"label":"boestale"}},{"type":"Polygon","arcs":[[1318,-2598,-2600,-655,-654,-653]],"properties":{"label":"tata"}},{"type":"Polygon","arcs":[[-2404,-1747,-271,-270,2651,956]],"properties":{"label":"makyale"}},{"type":"Polygon","arcs":[[-1045,-1044,1519,1520,-808,-807,548,549,550,551,552,553,554,555,2652,2653,2654,2655]],"properties":{"label":"tagofokakyu"}},{"type":"Polygon","arcs":[[48,2656,2657,2658,2659]],"properties":{"label":"nesukolu"}},{"type":"Polygon","arcs":[[-1488,-1487,-921,201,1674]],"properties":{"label":"kekyupei"}},{"type":"Polygon","arcs":[[-2270,-2269,2660,2661,2274,2275]],"properties":{"label":"bona"}},{"type":"Polygon","arcs":[[2662,2663,2664,1685,-2463,2665]],"properties":{"label":"kegoan"}},{"type":"Polygon","arcs":[[2666,-619,-618,2667,2668,-2455]],"properties":{"label":"nokya"}},{"type":"Polygon","arcs":[[-2059,-2058,-2067,2669,2670,-2060]],"properties":{"label":"nolesi"}},{"type":"Polygon","arcs":[[-2416,-2473,-2472,-2471,-2470,2671]],"properties":{"label":"flofupagoar"}},{"type":"Polygon","arcs":[[-2034,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,-1361,-1360,-1359,-1358,-1357,-1356,-1355,-1354,-1353,-1352]],"properties":{"label":"trikyubo"}},{"type":"Polygon","arcs":[[-1563,-1562,-2649,159,-1565,-1564]],"properties":{"label":"isugo"}},{"type":"Polygon","arcs":[[2687,2688,2689,2690,833,834,-2547,2691,2692,2693,2694,-276,-275,-274,841,842,843,844]],"properties":{"label":"floo"}},{"type":"Polygon","arcs":[[2695,1160,1647,-1090,-1089,1148,1149,2696,2697,2698]],"properties":{"label":"kyapisipafo"}},{"type":"Polygon","arcs":[[1185,1186,2699,2700,2701,2702,-2572,-2571,-2575,-2574,-364,-363,-362,-361,-644,-643,-642,-1687,-1686,-1685,-1684,-1683,-1682,-1681,1181,1182,1183,1184]],"properties":{"label":"anfu"}},{"type":"Polygon","arcs":[[-1415,-2483,-2482,-2481,182,-1416]],"properties":{"label":"gofu"}},{"type":"Polygon","arcs":[[2703,-1813,2018,2704,2705,-2611]],"properties":{"label":"kosise"}},{"type":"Polygon","arcs":[[2214,-413,-412,-411,2706,2707]],"properties":{"label":"kyakabo"}},{"type":"Polygon","arcs":[[2096,2097,2098,2708,2709,2107]],"properties":{"label":"fuies"}},{"type":"Polygon","arcs":[[1323,1324,-1814,-2704,-2610,1334]],"properties":{"label":"zoifu"}},{"type":"Polygon","arcs":[[2710,2711,-2114,2712,-2591,2713]],"properties":{"label":"takoseopi"}},{"type":"Polygon","arcs":[[1980,-2417,-2672,-2469,-2468,-299]],"properties":{"label":"petrifufuflo"}},{"type":"Polygon","arcs":[[-2148,-1866,-1865,2227,-1859,-2637]],"properties":{"label":"sebu"}},{"type":"Polygon","arcs":[[-2543,-2542,-2541,2714,2715,950,951,952,190,191]],"properties":{"label":"supisugobu"}},{"type":"Polygon","arcs":[[2716,2717,-2714,-2590,598,599]],"properties":{"label":"anfloko"}},{"type":"Polygon","arcs":[[2718,2296,2297,2298,2299,2300]],"properties":{"label":"folezo"}},{"type":"Polygon","arcs":[[2719,-2103,-2102,-2101,-2100,-2099]],"properties":{"label":"pibuflekofu"}},{"type":"Polygon","arcs":[[751,752,753,2720,2721,2263]],"properties":{"label":"buzo"}},{"type":"Polygon","arcs":[[602,2722,2723,-2717,600,601]],"properties":{"label":"pegole"}},{"type":"Polygon","arcs":[[2724,-2242,-2104,-2720,-2098,2725]],"properties":{"label":"neflobies"}},{"type":"Polygon","arcs":[[-2721,754,755,2726,2727,2728]],"properties":{"label":"bifu"}},{"type":"Polygon","arcs":[[45,-2621,-2620,2729,-1697]],"properties":{"label":"nasego"}},{"type":"Polygon","arcs":[[-1712,2730,-2521,-2038,2134,2135]],"properties":{"label":"kabueska"}},{"type":"Polygon","arcs":[[-1698,-2730,-2619,-2618,-2617,-2522]],"properties":{"label":"kaluno"}},{"type":"Polygon","arcs":[[2731,-451,-2086,2732,2733,2734]],"properties":{"label":"neleboflo"}},{"type":"Polygon","arcs":[[2735,2736,-2726,-2097,2737,-2587]],"properties":{"label":"bupinoargo"}},{"type":"Polygon","arcs":[[2738,-2645,2739,465,-1750,-1921]],"properties":{"label":"kyaesfobo"}},{"type":"Polygon","arcs":[[2740,1449,1450,2257,-1515,-2246]],"properties":{"label":"tripekya"}},{"type":"Polygon","arcs":[[-2641,-2640,-2646,-2739,-1920,1291]],"properties":{"label":"fleflofukyao"}},{"type":"Polygon","arcs":[[2741,2742,2295,-2719,2301,2743]],"properties":{"label":"foflo"}},{"type":"Polygon","arcs":[[-2612,-2706,2744,-2615,-2614,-2613]],"properties":{"label":"okokyapama"}},{"type":"Polygon","arcs":[[-1644,-1927,912,-1647,-1646,-1645]],"properties":{"label":"komako"}},{"type":"Polygon","arcs":[[1180,1680,2745,-2664,-2663,-2666,-2462,-638,-637,-636,1675,1676,1677,1678,1679,1177,1178,1179]],"properties":{"label":"kyulukase"}},{"type":"Polygon","arcs":[[2746,2747,1505,-2623,2748,2749]],"properties":{"label":"arno"}},{"type":"Polygon","arcs":[[2750,2751,2752,1487,1488,203]],"properties":{"label":"goannesipe"}},{"type":"Polygon","arcs":[[-948,-947,2753,2280,2281,2282,-940,-939,-2238,-2175,-2174,186,187,188,189,-953,-952,-951,-950,-949]],"properties":{"label":"goespiseke"}},{"type":"Polygon","arcs":[[1496,-1167,790,791,2754,2755]],"properties":{"label":"pefo"}},{"type":"Polygon","arcs":[[2756,-1672,-1018,-1017,2757,2758]],"properties":{"label":"kyata"}},{"type":"Polygon","arcs":[[2759,2760,2761,2762,2763,2764,-370,-369,-368,-367,-366,-2573,-2703,-2702,-2701,-2700,1187,1188]],"properties":{"label":"naboanflean"}},{"type":"Polygon","arcs":[[-1012,2167,-1916,1429,-910,-909]],"properties":{"label":"eslune"}},{"type":"Polygon","arcs":[[2765,-2734,2766,-2081,2767,2768]],"properties":{"label":"zopego"}},{"type":"Polygon","arcs":[[35,36,37,38,39,40,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,34]],"properties":{"label":"eslu"}},{"type":"Polygon","arcs":[[-2065,2779,-344,-343,-342,2780]],"properties":{"label":"matrikaestri"}},{"type":"Polygon","arcs":[[1095,2781,2782,123,1121,1122]],"properties":{"label":"namanaopi"}},{"type":"Polygon","arcs":[[2783,2784,1411,2785,2786,2787]],"properties":{"label":"bugokyafu"}},{"type":"Polygon","arcs":[[894,895,896,897,898,899,900,901,902,903,904,1641,1642,1643,1644,1645,1646,913,914,915,916,917,918,919,-584,-583,-582,-581,-580,-579,-288,-287,1030,1031,1032,1033,1034,893]],"properties":{"label":"oarpa"}},{"type":"Polygon","arcs":[[1459,-853,2788,2789,2790,2791,2792,965,966,967,968,969,970,348,349,350,351,352,353,354,355,2243,2244,2245,-1514,-1519,-1518,-1517,2246,1454,1455,1456,1457,1458]],"properties":{"label":"zoo"}},{"type":"Polygon","arcs":[[-1789,-1788,-2557,-2556,-2524,-1893]],"properties":{"label":"boletrizo"}},{"type":"Polygon","arcs":[[-1741,-1740,-1739,-1738,-1737,-1736,-2173,2294,-2743,-2742,-2744,2302,-2143,-2142,-2141,-2140,-1618,-1617,-1616,-1615]],"properties":{"label":"kogolean"}},{"type":"Polygon","arcs":[[1916,1917,-2601,-1324,1428,1915]],"properties":{"label":"nele"}},{"type":"Polygon","arcs":[[-2786,1412,-1079,-1078,-1077,2793]],"properties":{"label":"flonobulu"}},{"type":"Polygon","arcs":[[569,570,571,572,573,574,575,576,577,-378,-377,-376,-375,-374,-373,2272,2273,-2662,-2661,-2268,-2267,-2266,-2265,757,758,759,760,761]],"properties":{"label":"annapipi"}},{"type":"Polygon","arcs":[[2794,68,-2278,-2289,1434]],"properties":{"label":"anmakekyata"}},{"type":"Polygon","arcs":[[2795,-2787,-2794,-1076,2796,232]],"properties":{"label":"zoar"}},{"type":"Polygon","arcs":[[-1587,-1586,-1290,-1289,-1318,-2608,-2609,471,-2490,-2489,-2488,-2487,-2486,-1588]],"properties":{"label":"pafofle"}},{"type":"Polygon","arcs":[[1475,1867,1469,2797,1876,1877]],"properties":{"label":"flefupisuse"}},{"type":"Polygon","arcs":[[2798,297,298,299,1907,2799]],"properties":{"label":"espipekabi"}},{"type":"Polygon","arcs":[[-1625,-769,-768,2800,2801,2802]],"properties":{"label":"nepika"}},{"type":"Polygon","arcs":[[-1403,1945,-1123,2803,2804,2805]],"properties":{"label":"floflopaflees"}},{"type":"Polygon","arcs":[[231,-2797,-1075,-1074,-1073,-1072]],"properties":{"label":"floan"}},{"type":"Polygon","arcs":[[-2763,2806,2807,-371,-2765,-2764]],"properties":{"label":"fleareskyuflo"}},{"type":"Polygon","arcs":[[1287,1248,-346,-345,-2780,-2064]],"properties":{"label":"zoka"}},{"type":"Polygon","arcs":[[2808,2809,-1579,-1578,-1577,2810]],"properties":{"label":"panakyapigo"}},{"type":"Polygon","arcs":[[1329,1330,2811,2812,1327,1328]],"properties":{"label":"flematri"}},{"type":"Polygon","arcs":[[2053,2813,2814,-1879,2051,2052]],"properties":{"label":"nogoi"}},{"type":"Polygon","arcs":[[-2262,-2261,-2272,-2271,-2276,-2275,-2274,-2273,-372,-2808,-2807,-2762,-2761,-2760,1189,1190,1191,1192,741,742,743,744,745,746,747,748,2815,2816]],"properties":{"label":"nagoannefle"}},{"type":"Polygon","arcs":[[2817,2818,2819,2820,2821,2822,2823,2824,-1872,2825,2826,2827,-857,-856,-855,-854,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453]],"properties":{"label":"suiestafo"}},{"type":"Polygon","arcs":[[2828,-1720,-1585,1731,2829,2830]],"properties":{"label":"pafoboko"}},{"type":"Polygon","arcs":[[1325,1326,-2813,-2812,1331,1332,-608,-607,-606,-605,-604,-603,1808,1809,1810,1811,1812,1813]],"properties":{"label":"tako"}},{"type":"Polygon","arcs":[[2831,2832,2833,2834,-2814,2054]],"properties":{"label":"aresfo"}},{"type":"Polygon","arcs":[[2015,2016,-2504,-954,-628,1212]],"properties":{"label":"sekyafobu"}},{"type":"Polygon","arcs":[[12,2835,2836,2837,-1905]],"properties":{"label":"anpilugo"}},{"type":"Polygon","arcs":[[955,-2652,-269,-268,152,-1225]],"properties":{"label":"pekatrisusi"}},{"type":"Polygon","arcs":[[729,730,2838,-2832,2055,728]],"properties":{"label":"fuse"}},{"type":"Polygon","arcs":[[1361,1362,-488,2839,2840,2841,1673,1358,1359,1360]],"properties":{"label":"kyuarsizo"}},{"type":"Polygon","arcs":[[2842,381,382,383,-1473,-1581]],"properties":{"label":"pafu"}},{"type":"Polygon","arcs":[[-2835,-2834,2843,2844,2845,-1206,-1205,-1204,737,738,739,740,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1881,-1880,-2815]],"properties":{"label":"sesi"}},{"type":"Polygon","arcs":[[2846,379,380,-2843,-1580,-1468]],"properties":{"label":"nepe"}},{"type":"Polygon","arcs":[[-2754,-946,-945,-944,-943,2283]],"properties":{"label":"armabo"}},{"type":"Polygon","arcs":[[2847,2848,-2811,-1576,2849,2850]],"properties":{"label":"nelei"}},{"type":"Polygon","arcs":[[1855,-2651,2851,1852,1853,1854]],"properties":{"label":"kanogofu"}},{"type":"Polygon","arcs":[[1911,2852,-2800,1908,1909,1910]],"properties":{"label":"ipi"}},{"type":"Polygon","arcs":[[2853,2854,2855,207,2856]],"properties":{"label":"fozo"}},{"type":"Polygon","arcs":[[2857,-1301,2858,-2747,2859,2860]],"properties":{"label":"kesi"}},{"type":"Polygon","arcs":[[-1053,2861,2862,2863,2864,-1046,-2656,-2655,2865,2866,-2855,-2854,-2857,208,-1059,-1058,-1057,-1056,-1055,-1054]],"properties":{"label":"angopapi"}},{"type":"Polygon","arcs":[[374,375,2867,-1466,2868,1722]],"properties":{"label":"tabu"}},{"type":"Polygon","arcs":[[316,317,318,319,-1849,-1848,-1867,2147,2148,2149,2150,2151,2869,2870,2871,2872]],"properties":{"label":"fubopano"}},{"type":"Polygon","arcs":[[1721,-2869,-1477,-1476,-1475,-1624]],"properties":{"label":"triletriko"}},{"type":"Polygon","arcs":[[2873,2874,-2789,-852,-851,-850,-849,-848,2875,2876,2877,2878]],"properties":{"label":"sui"}},{"type":"Polygon","arcs":[[1663,1664,1665,1666,1298,1299,1300,1301,1302,1303]],"properties":{"label":"gone"}},{"type":"Polygon","arcs":[[-2715,-2540,-2539,-2538,302,303,304,305,306,307,308,309,310,311,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,-2716]],"properties":{"label":"lepilubu"}},{"type":"Polygon","arcs":[[-1742,131,2879]],"properties":{"label":"kyaoboes"}},{"type":"Polygon","arcs":[[1022,1023,2880,2881,2882,2883]],"properties":{"label":"neota"}},{"type":"Polygon","arcs":[[2884,-2071,-2070,-2069,-2020,-2019,-1812,-1811,-1810,-1809,-602,-601,-600,-599,-598,-597,-596,2885]],"properties":{"label":"lubupa"}},{"type":"Polygon","arcs":[[2886,2887,330,331,332,333,334,335,336,337,2888,-2809,-2849,-2848,-2851,-2850,-1575,-1574,-1573,-1572,2250,2251,2252,2253,2254,2255]],"properties":{"label":"espe"}},{"type":"Polygon","arcs":[[-2650,1860,2889,1850,1851,-2852]],"properties":{"label":"piflo"}},{"type":"Polygon","arcs":[[-2798,1470,1868,1869,2890,1875]],"properties":{"label":"pele"}},{"type":"Polygon","arcs":[[2891,-2883,2892,2893,2894,2895]],"properties":{"label":"peflotabu"}},{"type":"Polygon","arcs":[[-1442,1622,1623,-1474,-1444,-1443]],"properties":{"label":"sipi"}},{"type":"Polygon","arcs":[[2896,2897,2898,2899,2900,2901,2902,2903,-2410,-2409,-2408,-2407,-546,-545]],"properties":{"label":"estrikyafo"}},{"type":"Polygon","arcs":[[2904,2905,-2896,2906,2907,2908]],"properties":{"label":"goan"}},{"type":"Polygon","arcs":[[2909,-509,2910,-1841,-1232,-1231]],"properties":{"label":"kyapisiima"}},{"type":"Polygon","arcs":[[-2895,2911,2912,2913,2914,-694,-693,-692,-691,1014,1015,1016,1017,1018,1019,1020,1021,-2884,-2892,-2906,-2905,-2909,-2908,-2907]],"properties":{"label":"fope"}},{"type":"Polygon","arcs":[[-979,-978,-977,-976,-975,-974,-973,-972,73,74,75,1296,1297,-1667,-1666,-1665,-1664,1304,1305,-2643,-2642,-2628,-2627,-2626,-980]],"properties":{"label":"flokyaluflo"}},{"type":"Polygon","arcs":[[2915,313,314,315,-2873,-2872,-2871,-2870,2152,2153,-2480,-2479,-2399,-2398]],"properties":{"label":"sikyakolefo"}},{"type":"Polygon","arcs":[[-2588,-2738,-2108,-2107,-662,-2589]],"properties":{"label":"arse"}},{"type":"Polygon","arcs":[[2916,2917,1627,1628,1629,2918]],"properties":{"label":"lezo"}},{"type":"Polygon","arcs":[[-1051,-1050,-1049,2919,-2862,-1052]],"properties":{"label":"nefo"}},{"type":"Polygon","arcs":[[-2438,-2437,-2436,-2435,-354,-353,-352,-351,-350,-349,-348,2920,2921,2922,2923,2924,-1283,-1282]],"properties":{"label":"seikyasepe"}},{"type":"Polygon","arcs":[[2925,-625,-624,2926,2927,2928]],"properties":{"label":"arbu"}},{"type":"Polygon","arcs":[[-2920,-1048,-1047,-2865,-2864,-2863]],"properties":{"label":"fuiflo"}},{"type":"Polygon","arcs":[[-2072,-2885,-2886,-595,-2074,-2073]],"properties":{"label":"luflo"}},{"type":"Polygon","arcs":[[2929,2213,-2708,2930,-2459,2931]],"properties":{"label":"flokeseboan"}},{"type":"Polygon","arcs":[[636,637,638,-2443,-2442,2932]],"properties":{"label":"kego"}},{"type":"Polygon","arcs":[[368,-2250,1440,1441,2933,367]],"properties":{"label":"kotri"}},{"type":"Polygon","arcs":[[-1706,-2294,-2293,-2576,-1708,-1707]],"properties":{"label":"tribika"}},{"type":"Polygon","arcs":[[-2927,-623,-622,-621,2201,2934]],"properties":{"label":"bulekaes"}},{"type":"Polygon","arcs":[[630,631,632,633,634,635,-2933,-2441,-2440,-2439,-1273,-1272,672,673,674,675,676,677]],"properties":{"label":"fopean"}},{"type":"Polygon","arcs":[[2068,2069,2070,2071,2935,-2021]],"properties":{"label":"sioflose"}},{"type":"Polygon","arcs":[[1844,-503,-502,-501,-500,2936]],"properties":{"label":"ketri"}},{"type":"Polygon","arcs":[[-929,-928,312,-2916,-2397,-930]],"properties":{"label":"nagokokyu"}},{"type":"Polygon","arcs":[[-2022,-2936,2072,2937,-2024,-2023]],"properties":{"label":"estrinoano"}},{"type":"Polygon","arcs":[[733,734,-1207,-2846,2938,732]],"properties":{"label":"tabunobu"}},{"type":"Polygon","arcs":[[-2725,-2737,-2736,-2586,-2585,-2584,-2583,-2582,2939,2940,591,592,593,594,595,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1198,-2240,-2243]],"properties":{"label":"sile"}},{"type":"Polygon","arcs":[[2941,1040,1041,-2075,1047,1048]],"properties":{"label":"arpeflesi"}},{"type":"Polygon","arcs":[[-2938,2073,-594,-593,-2026,-2025]],"properties":{"label":"nebuesmale"}},{"type":"Polygon","arcs":[[286,287,288,-2401,-2403,-2633,-2636,-2635,-2634,293,294,2942,1913,1914,195,196,387,388,284,285]],"properties":{"label":"ile"}},{"type":"Polygon","arcs":[[540,541,542,2943,1927,2944]],"properties":{"label":"onogobopa"}},{"type":"Polygon","arcs":[[-814,-813,1039,-2942,1049,2945]],"properties":{"label":"flofopi"}},{"type":"Polygon","arcs":[[2076,2946,2947,2948,1371,1372]],"properties":{"label":"aro"}},{"type":"Polygon","arcs":[[-2949,2949,2094,2095,1369,1370]],"properties":{"label":"anlu"}},{"type":"Polygon","arcs":[[52,53,54,55,-1663,-1662,-1661,-1660,-1659,-1658,-1657,-1156,-2260,2950,2951,2952]],"properties":{"label":"suestri"}},{"type":"Polygon","arcs":[[2953,2954,-452,-2732,-2735,-2766,-2769,-2768,-2080,-2079,-2078,-2077,1373,1374,1375,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965]],"properties":{"label":"botanatama"}},{"type":"Polygon","arcs":[[2966,2967,1285,-2478,2057,-2354]],"properties":{"label":"bone"}},{"type":"Polygon","arcs":[[2968,2969,1051,1052,2970,2971]],"properties":{"label":"paar"}},{"type":"Polygon","arcs":[[1367,1368,-2096,-2095,-2094,-2093,-2092,-2091,-2090,-2089,-2088,-2087,-1669,-1668,2972,2973,1365,1366]],"properties":{"label":"pako"}},{"type":"Polygon","arcs":[[2974,2975,-2972,2976,2977,2978]],"properties":{"label":"fonesuine"}},{"type":"Polygon","arcs":[[-2531,1274,2979,2980,2981,-2532]],"properties":{"label":"keno"}},{"type":"Polygon","arcs":[[-2203,-2202,-620,-2667,-2454,2982]],"properties":{"label":"zopi"}},{"type":"Polygon","arcs":[[2983,-817,2984,-2969,-2976,2985]],"properties":{"label":"suzoar"}},{"type":"Polygon","arcs":[[1687,1688,1689,807,808,809]],"properties":{"label":"suoneitri"}},{"type":"Polygon","arcs":[[-2746,1681,1682,1683,1684,-2665]],"properties":{"label":"fubo"}},{"type":"Polygon","arcs":[[1035,1036,1037,1038,1,2,3,4,-818,-2984,-2986,-2975,-2979,-2978,-2977,-2971,1053,1054,1055,1056,1057,1058,209,210,1059]],"properties":{"label":"boboobu"}},{"type":"Polygon","arcs":[[2986,2987,67,-2795,1435,2988]],"properties":{"label":"pibu"}},{"type":"Polygon","arcs":[[2989,2990,2991,2992,2993,2994,-2515,-2514,-2513,-2512,-878,-877,-876,-875,-874,-873,-747,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-1670,2086,2087,2995,2996]],"properties":{"label":"fulu"}},{"type":"Polygon","arcs":[[-2668,-617,-616,-615,-614,2997]],"properties":{"label":"suzofune"}},{"type":"Polygon","arcs":[[-1298,-1297,76,2247,2998,-1299]],"properties":{"label":"koo"}},{"type":"Polygon","arcs":[[2999,3000,3001,1381,1382,1383,1384,1385,1386,1387,1388,-1127,-1126,1389,1390,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-2955,-2954,-2966,-2965,-2964,-2963,-2962]],"properties":{"label":"lugo"}},{"type":"Polygon","arcs":[[1154,1155,1156,1157,3002,3003]],"properties":{"label":"trinazoitri"}},{"type":"Polygon","arcs":[[-2456,-2669,-2998,-613,-2187,3004]],"properties":{"label":"flear"}},{"type":"Polygon","arcs":[[-1300,-2999,2248,1504,-2748,-2859]],"properties":{"label":"bokyupenazo"}},{"type":"Polygon","arcs":[[-2773,3005,1704,1705,-2779,3006]],"properties":{"label":"gobinei"}},{"type":"Polygon","arcs":[[-2061,-2671,3007,-339,-338,-337]],"properties":{"label":"kyutasu"}},{"type":"Polygon","arcs":[[2106,-2710,-2709,2099,2100,2101,2102,2103,2104,2105,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663]],"properties":{"label":"tazo"}},{"type":"Polygon","arcs":[[-2303,-2302,-2301,-2368,-2367,-2144]],"properties":{"label":"gomanona"}},{"type":"Polygon","arcs":[[749,750,-2264,-2263,-2817,-2816]],"properties":{"label":"bikopa"}},{"type":"Polygon","arcs":[[-2226,-2457,-3005,-2186,-2185,-2184]],"properties":{"label":"nezopa"}},{"type":"Polygon","arcs":[[51,-2953,-2952,-2951,-2259]],"properties":{"label":"peflenoo"}},{"type":"Polygon","arcs":[[-1411,3008,3009,3010,3011,3012,-2804,-1122,124,125,-1083,-1082,-1081,-1080,-1413,-1412]],"properties":{"label":"arbi"}},{"type":"Polygon","arcs":[[1732,-838,-837,-836,-835,-834,-833,-832,3013,3014,-2831,-2830]],"properties":{"label":"konearkya"}},{"type":"Polygon","arcs":[[-2974,-2973,-1671,-734,1363,1364]],"properties":{"label":"konelu"}},{"type":"Polygon","arcs":[[8,9,3015,3016,3017,531,532,533,534,535,3018,3019,3020,3021,7]],"properties":{"label":"manoozo"}},{"type":"Polygon","arcs":[[-2222,-1531,-1530,3022,-2903,-2902,-2901,-2900,-2899,-2898,-2897,-544,-543,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-1543,-1542,-1541,-1540,-1539,-1538,-1537]],"properties":{"label":"bisees"}},{"type":"Polygon","arcs":[[2185,2186,-612,-611,3023,3024]],"properties":{"label":"pelufloi"}},{"type":"Polygon","arcs":[[-1308,-1307,-1306,-1305,-1304,-1303,-1302,-2858,-2861,-2860,-2750,-2749,-2625,3025,3026,459,460,461,462,463,-1316,-1315,-1314,-1313,-1312,-1311,-1310,-1309]],"properties":{"label":"anta"}},{"type":"Polygon","arcs":[[-2713,-2113,-2595,-2594,-2593,-2592]],"properties":{"label":"zofle"}},{"type":"Polygon","arcs":[[49,1152,1153,-3004,-3003,1158,1159,-2696,-2699,-2698,3027,-2659,-2658,-2657]],"properties":{"label":"foarbipi"}},{"type":"Polygon","arcs":[[1357,-1674,-1673,-2757,3028,3029]],"properties":{"label":"kokyukyufle"}},{"type":"Polygon","arcs":[[2179,2180,2181,2182,2183,2184,-3025,-3024,-610,-609,-1333,-1332,-1331,-1330,2187,2188,2189,2190,2191,2192]],"properties":{"label":"flebunefoflo"}},{"type":"Polygon","arcs":[[-2723,603,-1904,-1903,-1902,-1901,3030,-2711,-2718,-2724]],"properties":{"label":"ikyukama"}},{"type":"Polygon","arcs":[[-1285,3031,3032,-1288,-1287,-1286]],"properties":{"label":"bogoar"}},{"type":"Polygon","arcs":[[344,345,346,347,-971,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,-2530,-2529,-2528,-2527,1215,1216,1217,1218,1219,-1945,-1944,343]],"properties":{"label":"fupi"}},{"type":"Polygon","arcs":[[1473,1474,-1878,-1877,-1876,-1875,-2375,-2374,-2378,-2377,-2376,-1873,-2825,-2824,-2823,-2822,-2821,-2820,-2819,-2818,-1452,-1451,-1450,-1449,-1448,-1447,-1446,-1445]],"properties":{"label":"fukakya"}},{"type":"Polygon","arcs":[[3033,-2922,-2921,-347,-1249,-3033]],"properties":{"label":"siflepesu"}},{"type":"Polygon","arcs":[[-518,-517,678,3034,3035,-519]],"properties":{"label":"osifleseta"}},{"type":"Polygon","arcs":[[-2280,419,3036,3037,412,413]],"properties":{"label":"trino"}},{"type":"Polygon","arcs":[[731,-2939,-2845,-2844,-2833,-2839]],"properties":{"label":"pekobu"}},{"type":"Polygon","arcs":[[-2925,-2924,-2923,-3034,-3032,-1284]],"properties":{"label":"zono"}},{"type":"Polygon","arcs":[[-1025,-1024,-1023,-1022,-1021,-1020,-1019,1671,1672,-2842,3038,3039,3040,-486,-485,-484,-483,-482,-481,3041,3042,3043]],"properties":{"label":"bipii"}},{"type":"Polygon","arcs":[[664,665,666,667,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-1264,1983,3044,3045,3046,1968,1969,1970,1971,1972,1973,-2467,-2466,-2465,-2464,-2477,-2476,-2475,-2474]],"properties":{"label":"neflosukyubi"}},{"type":"Polygon","arcs":[[3047,3048,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-1583,-1719,3049,3050,3051,3052,-1730,-868,-867,-866,-865,3053]],"properties":{"label":"ibufle"}},{"type":"Polygon","arcs":[[-1817,3054,3055,-1820,-1819,-1818]],"properties":{"label":"ibikasule"}},{"type":"Polygon","arcs":[[-2829,-3015,-3014,-831,-830,-829,-828,-827,-826,-825,-824,-871,-870,-869,1729,1730,-1717,-1721]],"properties":{"label":"papaan"}},{"type":"Polygon","arcs":[[1737,1738,1739,1740,-1614,1074,1075,1076,1077,1078,1079,1080,1081,1082,126,127,128,3056,3057,3058,1734,1735,1736]],"properties":{"label":"goise"}},{"type":"Polygon","arcs":[[1762,110,-267,3059]],"properties":{"label":"pibipesi"}},{"type":"Polygon","arcs":[[-2032,3060,3061,-2674,-2673,-2033]],"properties":{"label":"butrigo"}},{"type":"Polygon","arcs":[[-1907,1930,3062,-3016,10]],"properties":{"label":"zokaarmalu"}},{"type":"Polygon","arcs":[[3063,-2678,-2677,-2676,-2675,-3062]],"properties":{"label":"sefo"}},{"type":"Polygon","arcs":[[3064,3065,-2008,3066,3067,3068]],"properties":{"label":"zona"}},{"type":"Polygon","arcs":[[-2894,3069,3070,-2180,3071,-2912]],"properties":{"label":"biflonasi"}},{"type":"Polygon","arcs":[[3072,3073,-2517,-2516,-2995,-2994,-2993,-2992,-2991,-2990,-2997,-2996,2088,2089,2090,2091,3074,3075,3076,3077]],"properties":{"label":"futri"}},{"type":"Polygon","arcs":[[1024,1025,-2207,-2206,2222,2223,2224,2225,-2183,-2182,-2181,-3071,-3070,-2893,-2882,-2881]],"properties":{"label":"papeesbu"}},{"type":"Polygon","arcs":[[3078,3079,1803,168,1804,3080]],"properties":{"label":"flekasego"}},{"type":"Polygon","arcs":[[2008,3081,3082,3083,2006,2007]],"properties":{"label":"flei"}},{"type":"Polygon","arcs":[[-3053,-3052,-3051,-3050,-1718,-1731]],"properties":{"label":"kobofubi"}},{"type":"Polygon","arcs":[[2028,2029,2030,2031,3084,3085]],"properties":{"label":"bikagokolu"}},{"type":"Polygon","arcs":[[-3084,-3083,-3082,2009,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,2003,2004,2005]],"properties":{"label":"kopefusepi"}},{"type":"Polygon","arcs":[[3097,-3085,2032,2033,-1351,3098]],"properties":{"label":"gofu"}},{"type":"Polygon","arcs":[[-474,-473,-472,-471,3099,3100,3101,3102,3103,3104,-1385,-1384,-1383,-1382,-1381,-1380,-1379,-1378,-1377,-1376,-1375,-1374,-1373,3105,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,614,615,616,617,618,619,620,621,622,623,624,625,-476,-475]],"properties":{"label":"ogo"}},{"type":"Polygon","arcs":[[3106,3107,1936,3108,3109,3110]],"properties":{"label":"kyukyusiflo"}},{"type":"Polygon","arcs":[[-432,-431,3111,-819,-2567,-2566]],"properties":{"label":"fupana"}},{"type":"Polygon","arcs":[[3112,2027,-3086,-3098,3113,-1346]],"properties":{"label":"kyamakyaar"}},{"type":"Polygon","arcs":[[590,-2941,-2940,-2581,-923,-922]],"properties":{"label":"panapipa"}},{"type":"Polygon","arcs":[[582,583,584,585,-2599,-2596,-2578,-2577,-2580,-2502,-290,-289,578,579,580,581]],"properties":{"label":"anfletasu"}},{"type":"Polygon","arcs":[[3114,-2758,-1016,-1015,-690,3115]],"properties":{"label":"kake"}},{"type":"Polygon","arcs":[[3116,3117,3118,-730,1882,1883]],"properties":{"label":"kyulufokyafu"}},{"type":"Polygon","arcs":[[22,2026,-3113,-1345]],"properties":{"label":"oflotagoo"}},{"type":"Polygon","arcs":[[3119,3120,-2501,713,3121,3122]],"properties":{"label":"bosu"}},{"type":"Polygon","arcs":[[1847,1848,320,321,322,323,-1397,-1396,-1395,-1394,-1393,-1392,-1802,-1801,-1800,-1799,-1798,-1797,1849,-2890,1861,1862,1863,1864,1865,1866]],"properties":{"label":"keannaflose"}},{"type":"Polygon","arcs":[[376,377,378,-2847,-1467,-2868]],"properties":{"label":"kaokyakokyu"}},{"type":"Polygon","arcs":[[847,3123,3124,-2688,845,846]],"properties":{"label":"eske"}},{"type":"Polygon","arcs":[[-2943,295,296,-2799,-2853,1912]],"properties":{"label":"bilupabu"}},{"type":"Polygon","arcs":[[-480,-479,-1030,-1029,3125,-3042]],"properties":{"label":"koaro"}},{"type":"Polygon","arcs":[[3126,3127,3128,3129,-3124,848]],"properties":{"label":"pimanabu"}},{"type":"Polygon","arcs":[[3130,3131,3132,3133,3134,3135,-1853,-1852,-1851,-1850,-1808,-1807,-1806,-1805,169,170,171,172,173,174,175,176]],"properties":{"label":"esankyuar"}},{"type":"Polygon","arcs":[[-3096,-3095,3136,2001,2002,-3097]],"properties":{"label":"triflosees"}},{"type":"Polygon","arcs":[[-1347,-3114,-3099,-1350,-1349,-1348]],"properties":{"label":"ofues"}},{"type":"Polygon","arcs":[[855,856,857,858,859,860,1201,1961,1962,1963,827,828,829,830,831,832,-2691,-2690,-2689,-3125,-3130,-3129,-3128,-3127,849,850,851,852,853,854]],"properties":{"label":"pakyufope"}},{"type":"Polygon","arcs":[[21,1344,1345,1346,3137]],"properties":{"label":"fukearpi"}},{"type":"Polygon","arcs":[[2078,2079,2080,2081,3138,3139,3140,3141,-3078,-3077,-3076,-3075,2092,2093,-2950,-2948,-2947,2077]],"properties":{"label":"ofufulugo"}},{"type":"Polygon","arcs":[[-1559,-1558,2228,2229,-2165,3142,3143,3144,3145,156,157,-2648,-1560]],"properties":{"label":"bugose"}},{"type":"Polygon","arcs":[[3146,3147,3148,3149,3150,-1924,2194,2195,428,429,430,431,432,433]],"properties":{"label":"nearkyubu"}},{"type":"Polygon","arcs":[[-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-516,-515,-514,-513,-512,-511,20,-3138,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,-3030,-3029,-2759,-3115,-3116]],"properties":{"label":"zokatakogo"}},{"type":"Polygon","arcs":[[3151,3152,3153,3154,3155,3156,522,523,3157,3158]],"properties":{"label":"nekyupipa"}},{"type":"Polygon","arcs":[[-478,-477,-626,-2926,3159,1029]],"properties":{"label":"esfo"}},{"type":"Polygon","arcs":[[3160,3161,3162,-329,3163,3164]],"properties":{"label":"luesarbigo"}},{"type":"Polygon","arcs":[[255,3165,-1117,-1116,249,718]],"properties":{"label":"essukane"}},{"type":"Polygon","arcs":[[1946,3166,3167,-3010,-3009,-1410]],"properties":{"label":"pimaanko"}},{"type":"Polygon","arcs":[[-402,99,3168,-403]],"properties":{"label":"nanetapabo"}},{"type":"Polygon","arcs":[[3169,-1960,-332,-331,-330,-3163]],"properties":{"label":"lemana"}},{"type":"Polygon","arcs":[[257,258,-2159,-1118,-3166,256]],"properties":{"label":"kyubutasu"}},{"type":"Polygon","arcs":[[-2452,-2451,3170,1227,25]],"properties":{"label":"iansu"}},{"type":"Polygon","arcs":[[13,14,15,16,17,18,19,510,511,512,513,514,515,516,517,3171,-3156,-3155,-3154,-3153,-3152,-3159,-3158,524,525,526,527,528,529,-1933,-1932,-1931,-1906,-2838,-2837,-2836]],"properties":{"label":"kyusuleka"}},{"type":"Polygon","arcs":[[-2450,-2449,1242,3172,1226,-3171]],"properties":{"label":"flene"}},{"type":"Polygon","arcs":[[3173,3174,105,3175,3176,3177]],"properties":{"label":"supai"}},{"type":"Polygon","arcs":[[3178,3179,3180,-3149,-3148,3181]],"properties":{"label":"sinapa"}},{"type":"Polygon","arcs":[[3182,-2166,-2230,-2229,-1557,-1556]],"properties":{"label":"keopitaka"}},{"type":"Polygon","arcs":[[3183,89,-1925,-3151,-3150,-3181]],"properties":{"label":"pibubi"}},{"type":"Polygon","arcs":[[1028,-3160,-2929,-2928,-2935,2202,2203,3184,3185,1027]],"properties":{"label":"takebi"}},{"type":"Polygon","arcs":[[3186,-2805,-3013,-3012,-3011,-3168]],"properties":{"label":"naikake"}},{"type":"Polygon","arcs":[[-568,-567,-566,-565,-564,-563,-562,-561,-404,-3169,100,101,102,103,104,-3175,-3174,-3178,3187,-570,-569]],"properties":{"label":"bubuanlefle"}},{"type":"Polygon","arcs":[[3188,1651,1652,1653,3189,3190]],"properties":{"label":"flebinasuflo"}},{"type":"Polygon","arcs":[[338,339,340,341,-1223,-1222,-2167,-3183,-1555,-1554,-1553,-1552,-2810,-2889]],"properties":{"label":"noi"}},{"type":"Polygon","arcs":[[88,-3184,-3180,3191]],"properties":{"label":"ipebifloka"}},{"type":"Polygon","arcs":[[1117,1118,1948,3192,3193,1116]],"properties":{"label":"kyubosumabu"}},{"type":"Polygon","arcs":[[-3043,-3126,-1028,-1027,-1026,-3044]],"properties":{"label":"lufupake"}},{"type":"Polygon","arcs":[[2136,2137,-2555,-2518,-2731,-1711]],"properties":{"label":"luzomakago"}},{"type":"Polygon","arcs":[[-1513,2193,-2012,-2011,-2010,-2009,-3066,-3065,-3069,-3068,-3067,-2007,-2006,-2005,-2004,-2003,-2002,-2001,-2000,-1999,-1998,-1997,-1996,-1995,85,86,87,-3192,-3179,-3182,-3147,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,-1511,-1510,-1509,-1508]],"properties":{"label":"tataes"}},{"type":"Polygon","arcs":[[3194,3195,3196,3197,1109,1110,1111,1112,1113,1114,243,244,245,246,247,248,1115,-3194,-3193,1949,1950,1951,1952,1120,261,262,263,264,265,266,111,112,113,114,115,3198,3199,3200,3201]],"properties":{"label":"paogogo"}},{"type":"Polygon","arcs":[[3202,693,694,695,696,-1212]],"properties":{"label":"floiopabo"}},{"type":"Polygon","arcs":[[-2685,-2684,-2683,-2682,-2681,-2680,3203,3204,-2030,-2029,-2028,-2027,23,-1491,-1490,-1247,-1246,-1245,1497,1498,1499,1500,-494,-493,-492,-491,-490,-489,-1363,-1362,-2687,-2686]],"properties":{"label":"goessi"}},{"type":"Polygon","arcs":[[-2775,-2774,-3007,-2778,-2777,-2776]],"properties":{"label":"paneopelu"}},{"type":"Polygon","arcs":[[3205,691,692,-3203,-1211,701]],"properties":{"label":"lusipi"}},{"type":"Polygon","arcs":[[-2670,-2066,-2781,-341,-340,-3008]],"properties":{"label":"ike"}},{"type":"Polygon","arcs":[[-2329,-1547,-1546,-1545,686,687,688,689,690,-3206,702,703,704,705,706,707,708,3206]],"properties":{"label":"pipago"}},{"type":"Polygon","arcs":[[3207,-1854,-3136,-3135,-3134,-3133]],"properties":{"label":"sitri"}},{"type":"Polygon","arcs":[[-1405,-1404,-2806,-3187,-3167,1947]],"properties":{"label":"maipeka"}},{"type":"Polygon","arcs":[[-780,3208,-1635,-1634,-1633,-1632,-1631,-1630,-1729,-1728,-1727,-1726,-1725,-1724,977,3209,3210,3211,3212,3213,-2421,-2420,-2419,-2418,-782,-781]],"properties":{"label":"boko"}},{"type":"Polygon","arcs":[[56,57,1648,1649,1650,-3189,-3191,-3190,1654,1655,778,779,780,781,782,783,784,785,786,787,-1166,-1165,-1164,-1163,-1162,-1161,-1160,-1159,-1158,-1157,1656,1657,1658,1659,1660,1661,1662]],"properties":{"label":"susenane"}},{"type":"Polygon","arcs":[[539,-2945,1928,1929,811,812,813,814,815,816,817,5,6,-3022,-3021,-3020,-3019,536,537,538]],"properties":{"label":"kyamabisebu"}},{"type":"Polygon","arcs":[[3214,1701,1702,1703,-3006,-2772]],"properties":{"label":"sesepakafo"}},{"type":"Polygon","arcs":[[47,-2660,-3028,-2697,1150,1151]],"properties":{"label":"kyuanfu"}},{"type":"Polygon","arcs":[[-2733,-2085,-2084,-2083,-2082,-2767]],"properties":{"label":"pina"}},{"type":"Polygon","arcs":[[3215,1007,1008,3216,3217,3218]],"properties":{"label":"naan"}},{"type":"Polygon","arcs":[[108,2160,-1760,3219]],"properties":{"label":"zogo"}},{"type":"Polygon","arcs":[[-1735,-1734,-1744,3220,2171,2172]],"properties":{"label":"fleo"}},{"type":"Polygon","arcs":[[-2508,-2507,-2506,-2505,-3074,-3073,-3142,-3141,-3140,-3139,2082,2083,2084,2085,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-884,-883,-882,-2511,-2510,-2509]],"properties":{"label":"piko"}},{"type":"Polygon","arcs":[[1391,1392,1393,1394,1395,1396,324,325,326,-2257,-2256,-2255,-2254,-2253,-2252,-2251,-1571,-1570,-1569,-1568,-1567,-1566,164,165,1397,1398,1399,1400]],"properties":{"label":"susebi"}},{"type":"Polygon","arcs":[[3221,3222,-2989,1436,766,767]],"properties":{"label":"kalezo"}},{"type":"Polygon","arcs":[[-1943,-2330,-3207,709,710,711]],"properties":{"label":"osu"}},{"type":"Polygon","arcs":[[65,66,-2988,-2987,-3223,-3222,768,769,3223,3224,3225,3226,3227]],"properties":{"label":"tasinetrifu"}},{"type":"Polygon","arcs":[[-2705,2019,2020,2021,-2616,-2745]],"properties":{"label":"kaansufu"}},{"type":"Polygon","arcs":[[-2412,3228,-1527,-1526,-1525,-1524,-1523,-1522,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-890,-889,-888,-887,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,-554,-553,3229,3230]],"properties":{"label":"kanafuesbi"}},{"type":"Polygon","arcs":[[2198,2199,-2035,396,397,2200]],"properties":{"label":"kyako"}},{"type":"Polygon","arcs":[[1565,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,1556,1557,1558,1559,1560,1561,1562,1563,1564,160,161,162,163]],"properties":{"label":"tripakoi"}},{"type":"Polygon","arcs":[[64,-3228,-3227,3243]],"properties":{"label":"biika"}},{"type":"Polygon","arcs":[[3244,3245,3246,3247,3248,3249,1756,1757,1758,1759,1760,1761,-3060,-266,-265,-264,-263,-262,-261,-260,-259,3250]],"properties":{"label":"bupasetrian"}},{"type":"Polygon","arcs":[[1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,-2968,-2967,-2353,-2333,-2332,-2331,-2537,-2536,-2535,-2534,-2533,-2982,-2981,-2980]],"properties":{"label":"flebo"}},{"type":"Polygon","arcs":[[-2323,-1780,-2349,3251,3252,-2315]],"properties":{"label":"arma"}},{"type":"Polygon","arcs":[[3253,3254,3255,3256,3257,3258]],"properties":{"label":"bipaflokafu"}},{"type":"Polygon","arcs":[[-778,-777,-776,-1636,-3209,-779]],"properties":{"label":"pelefu"}},{"type":"Polygon","arcs":[[3259,-1400,-1493,1802,-3080,3260]],"properties":{"label":"pazosi"}},{"type":"Polygon","arcs":[[-2791,-2790,-2875,-2874,3261,-2792]],"properties":{"label":"anpi"}},{"type":"Polygon","arcs":[[3262,283,-1826,-1825,-1824,-1823,-1822,3263,-3258,-3257]],"properties":{"label":"zofletai"}},{"type":"Polygon","arcs":[[420,421,3264,3265,3266,-3037]],"properties":{"label":"kyaigo"}},{"type":"Polygon","arcs":[[680,681,-1892,1940,-2500,3267]],"properties":{"label":"kyaarbine"}},{"type":"Polygon","arcs":[[-3157,-3172,518,519,520,521]],"properties":{"label":"pelusenepa"}},{"type":"Polygon","arcs":[[422,3268,3269,3270,98,401,402,403,404,405,406,407,408,409,410,411,-3038,-3267,-3266,-3265]],"properties":{"label":"nakyu"}},{"type":"Polygon","arcs":[[328,329,-2888,-2887,2256,327]],"properties":{"label":"fuoan"}},{"type":"Polygon","arcs":[[-2741,-2245,-2244,356,357,358,359,360,361,362,363,364,365,3271,3272,-2342,-2341,1446,1447,1448]],"properties":{"label":"selegono"}},{"type":"Polygon","arcs":[[1633,3273,-2919,1630,1631,1632]],"properties":{"label":"pekebikees"}},{"type":"Polygon","arcs":[[3274,130,1741,1742,1743]],"properties":{"label":"ipeleflene"}},{"type":"Polygon","arcs":[[-3035,679,-3268,-2499,-3121,3275]],"properties":{"label":"kees"}},{"type":"Polygon","arcs":[[1800,1801,-1401,-3260,3276,1799]],"properties":{"label":"kagoino"}},{"type":"Polygon","arcs":[[-771,-770,1624,1625,1626,-2918,3277,-774,-773,-772]],"properties":{"label":"lesu"}},{"type":"Polygon","arcs":[[-1620,-1619,2139,3278,-2307,-1621]],"properties":{"label":"antalena"}},{"type":"Polygon","arcs":[[3279,3280,1767,1768,-382,-381]],"properties":{"label":"zobubole"}},{"type":"Polygon","arcs":[[1874,-2891,1870,1871,1872,1873]],"properties":{"label":"kyaikane"}},{"type":"Polygon","arcs":[[-526,-525,-524,-523,-522,1935,-3108,-3107,-3111,-3110,-3109,1937,1938,1939,-520,-3036,-3276,-3120,-3123,-3122,714,715,716,717,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527]],"properties":{"label":"ankyu"}},{"type":"Polygon","arcs":[[107,-3220,-1759,-1758,-1757,-1756,-1755,-1754,-1753,-1752,-1751,-572,-571,-3188,-3177,-3176,106]],"properties":{"label":"kyabu"}},{"type":"Polygon","arcs":[[-2944,543,544,1933,-1689,1934]],"properties":{"label":"bokasupaes"}},{"type":"Polygon","arcs":[[213,-1226,-1085,3281,3282,3283]],"properties":{"label":"kesefleibo"}},{"type":"Polygon","arcs":[[3284,3285,3286,-3233,-3232,1566]],"properties":{"label":"ikyu"}},{"type":"Polygon","arcs":[[-578,-577,-576,-575,-574,-573,1750,1751,1752,1753,1754,1755,-3250,-3249,-3248,-3247,-3246,-3245,3287,3288,1765,1766,-3281,-3280,-380,-379]],"properties":{"label":"paanpe"}},{"type":"Polygon","arcs":[[3289,3290,3291,3292,-1253,3293]],"properties":{"label":"koanlezona"}},{"type":"Polygon","arcs":[[3294,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532]],"properties":{"label":"okei"}},{"type":"Polygon","arcs":[[-2654,-2653,556,557,3295,-2866]],"properties":{"label":"bifletao"}},{"type":"Polygon","arcs":[[1931,1932,530,-3018,-3017,-3063]],"properties":{"label":"sefu"}},{"type":"Polygon","arcs":[[3296,3297,3298,3299,63,-3244,-3226,-3225,-3224,770,771,772,3300]],"properties":{"label":"gono"}},{"type":"Polygon","arcs":[[-2044,3301,-3294,-1252,-2046,-2045]],"properties":{"label":"lubile"}},{"type":"Polygon","arcs":[[-1968,3302,-2163,840,-281,-280]],"properties":{"label":"nazokyubi"}},{"type":"Polygon","arcs":[[2262,-2722,-2729,-2728,-2727,756,2264,2265,2266,2267,2268,-2570,-2569,2261]],"properties":{"label":"tafosekapa"}},{"type":"Polygon","arcs":[[1796,1797,1798,-3277,-3261,-3079,-3081,1805,1806,1807]],"properties":{"label":"triseo"}},{"type":"Polygon","arcs":[[-2876,-847,-2227,1437,1438,961,962,3303,-2878,-2877]],"properties":{"label":"gofleflo"}},{"type":"Polygon","arcs":[[-3058,-3057,129,-3275,1733,-3059]],"properties":{"label":"espe"}},{"type":"Polygon","arcs":[[-1966,-1989,-2048,-2162,-3303,-1967]],"properties":{"label":"seta"}},{"type":"Polygon","arcs":[[972,973,974,975,976,1723,1724,1725,1726,1727,1728,-1629,-1628,-1627,-1626,-2803,-2802,-2801,-767,-766,1065,1066,1067,1068,1069,1070]],"properties":{"label":"zomaka"}},{"type":"Polygon","arcs":[[-1236,-1235,3304,-2328,-2327,1846]],"properties":{"label":"susekakya"}},{"type":"Polygon","arcs":[[-3269,423,3305,3306,3307,3308,3309,97,-3271,-3270]],"properties":{"label":"sekyafo"}},{"type":"Polygon","arcs":[[-1976,-1975,-1974,3310,-2042,-1977]],"properties":{"label":"kyatri"}},{"type":"Polygon","arcs":[[1533,3311,-904,-903,1521,-3295]],"properties":{"label":"biose"}},{"type":"Polygon","arcs":[[78,79,80,81,82,83,84,1994,1995,1996,1997,1998,1999,2000,-3137,-3094,-3093,-3092,-3091,-3090,-3089,-3088,-3087,2010,2011,2012,2013,2014,-1502]],"properties":{"label":"oflopibupi"}},{"type":"Polygon","arcs":[[1009,1010,1011,-908,-907,-906,-905,-3312,1534,1535,1536,1537,1538,3312,3313,-3219,-3218,-3217]],"properties":{"label":"kyafuiflose"}},{"type":"Polygon","arcs":[[267,3314,1817,1818,1819,1820,1821,1822,1823,1824,1825,212,-3284,-3283,3315,-2386,-2385,-2384,-2383,-2382,-2389,-2388,146,147,148,149,150,151]],"properties":{"label":"artriflopesi"}},{"type":"Polygon","arcs":[[1551,1552,1553,3316,3317,3318,-3242,-3241,-3240,-3239,-3238,-3237,-3236,-3235,-3234,-3287,-3286,-3285,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578]],"properties":{"label":"paanankya"}},{"type":"Polygon","arcs":[[-1978,2041,2042,2043,-2360,-1979]],"properties":{"label":"pikyapa"}},{"type":"Polygon","arcs":[[3319,96,-3310]],"properties":{"label":"trinegokalu"}},{"type":"Polygon","arcs":[[-3289,-3288,-3251,-258,1763,1764]],"properties":{"label":"flozogope"}},{"type":"Polygon","arcs":[[-1767,-1766,-1765,3320,3321,-1768]],"properties":{"label":"oneesfopi"}},{"type":"Polygon","arcs":[[-2123,3322,3323,1237,2285,2286]],"properties":{"label":"flebukyaflono"}},{"type":"Polygon","arcs":[[91,92,93,94,95,-3320,-3309,-3308,-3307,-3306,424,425,426,427,-2196,-2195,-1923,-1922]],"properties":{"label":"floka"}},{"type":"Polygon","arcs":[[-816,-815,-2946,1050,-2970,-2985]],"properties":{"label":"esbiesnofo"}},{"type":"Polygon","arcs":[[-1010,-1009,-1008,-1007,-696,-695,-2915,-2914,-2913,-3072,-2193,-2192,-2191,-2190,-2189,-2188,-1329,-1919,-1918,-1917,-2168,-1011]],"properties":{"label":"pebo"}},{"type":"Polygon","arcs":[[32,-2565,-2201,398,399,400]],"properties":{"label":"kokatakofo"}},{"type":"Polygon","arcs":[[-2361,2045,-1251,-1250,-310,-309]],"properties":{"label":"tripitripibi"}},{"type":"Polygon","arcs":[[1379,1380,-3002,-3001,-3000,-2961,-2960,-2959,-2958,-2957,-2956,1376,1377,1378]],"properties":{"label":"kyubo"}},{"type":"Polygon","arcs":[[-2121,-1612,-2237,3324,-3323,-2122]],"properties":{"label":"pisuestri"}},{"type":"Polygon","arcs":[[-2692,-2546,1966,1967,-279,3325]],"properties":{"label":"mapi"}},{"type":"Polygon","arcs":[[-2867,-3296,558,559,206,-2856]],"properties":{"label":"maflofle"}},{"type":"Polygon","arcs":[[-2694,-2693,-3326,-278,-277,-2695]],"properties":{"label":"kaflokyabose"}},{"type":"Polygon","arcs":[[-3282,-1084,142,-2387,-3316]],"properties":{"label":"foko"}},{"type":"Polygon","arcs":[[-3325,-2236,-2277,1235,1236,-3324]],"properties":{"label":"peankobui"}},{"type":"Polygon","arcs":[[-2494,3326,3327,-2497,-2496,-2495]],"properties":{"label":"papakyufulu"}},{"type":"Polygon","arcs":[[-3321,-1764,-257,-256,-255,3328]],"properties":{"label":"esopeta"}},{"type":"Polygon","arcs":[[-1092,-1991,3329,789,1166,1167]],"properties":{"label":"zonebu"}},{"type":"Polygon","arcs":[[2035,-2373,393,394,395,2034]],"properties":{"label":"fuflekya"}},{"type":"Polygon","arcs":[[3330,-699,3331,-3313,1539,1540]],"properties":{"label":"luarar"}},{"type":"Polygon","arcs":[[-1900,-2117,-2116,-2115,-2712,-3031]],"properties":{"label":"kesi"}},{"type":"Polygon","arcs":[[1026,-3186,-3185,2204,2205,2206]],"properties":{"label":"foseneflena"}},{"type":"Polygon","arcs":[[878,3332,-2932,-2458,876,877]],"properties":{"label":"iosina"}},{"type":"Polygon","arcs":[[3333,-317,-316,-315,-314,-313,-312,-311,1249,-2179,-2234,-2233]],"properties":{"label":"flofotale"}},{"type":"Polygon","arcs":[[-706,1129,-700,-3331,1541,1542]],"properties":{"label":"kapapenole"}},{"type":"Polygon","arcs":[[-3205,-3204,-2679,-3064,-3061,-2031]],"properties":{"label":"natri"}},{"type":"Polygon","arcs":[[2210,2211,2212,-2930,-3333,879]],"properties":{"label":"lunatakyaar"}},{"type":"Polygon","arcs":[[-3317,1554,1555,-3243,-3319,-3318]],"properties":{"label":"oespa"}},{"type":"Polygon","arcs":[[2039,2040,800,3334,391,-2372]],"properties":{"label":"tritanake"}},{"type":"Polygon","arcs":[[-2840,-487,-3041,-3040,-3039,-2841]],"properties":{"label":"pabutri"}},{"type":"Polygon","arcs":[[-3311,-1973,3335,-3290,-3302,-2043]],"properties":{"label":"nasu"}},{"type":"Polygon","arcs":[[-1857,-1856,-1855,-3208,-3132,-3131,177,178,-2158,-2157,-2156,-2155,-2154,-2153,-2152,-2151,-2639,-2638]],"properties":{"label":"bofulefle"}},{"type":"Polygon","arcs":[[-3335,801,802,3336,-1464,390]],"properties":{"label":"tafopa"}},{"type":"Polygon","arcs":[[30,31,-401,-400,-399,-398,-1613,2120,2121,2122,2123,2124,2125,2126,29]],"properties":{"label":"naarna"}},{"type":"Polygon","arcs":[[-2644,1313,1314,1315,464,-2740]],"properties":{"label":"kepanetaan"}},{"type":"Polygon","arcs":[[-1769,-3322,-3329,-254,-630,-383]],"properties":{"label":"pefle"}},{"type":"Polygon","arcs":[[-3337,803,804,805,506,-1465]],"properties":{"label":"nefo"}},{"type":"Polygon","arcs":[[1263,1264,-2063,-2062,-1961,-3170,-3162,-3161,-3165,-3164,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-3334,-2232,-2231,1255,1256,1257,1258,1259,1260,1261,1262]],"properties":{"label":"seno"}},{"type":"Polygon","arcs":[[-1934,545,546,547,806,-1690]],"properties":{"label":"funeannotri"}},{"type":"Polygon","arcs":[[-2554,-2553,-2552,2127,2128,2129,2130,2131,2132,2133,1494,1495,-2756,-2755,792,793,794,795,796,797,798,799,-2041,-2520]],"properties":{"label":"zokata"}},{"type":"Polygon","arcs":[[-1650,-1649,58,59,60,61,62,-3300,-3299,-3298,-3297,-3301,773,774,775,776,777,-1656,-1655,-1654,-1653,-1652,-1651]],"properties":{"label":"buesi"}},{"type":"Polygon","arcs":[[-2427,3337,3338,3339,3340,3341,985,986,987,988,989,-2434,-2433,-2432,-2431,-2430,-2429,-2428]],"properties":{"label":"bisukama"}},{"type":"Polygon","arcs":[[223,224,225,226,227,228,229,230,1071,1072,1073,1613,1614,1615,1616,1617,1618,1619,1620,1621,221,222]],"properties":{"label":"esflosu"}},{"type":"Polygon","arcs":[[-2414,-2413,-3231,-3230,-552,-551]],"properties":{"label":"paanfosu"}},{"type":"Polygon","arcs":[[269,3342,1815,1816,-3315,268]],"properties":{"label":"esketri"}},{"type":"Polygon","arcs":[[-3026,-2624,1509,1510,458,-3027]],"properties":{"label":"ansiarno"}},{"type":"Polygon","arcs":[[3343,-998,-997,-996,-2498,-3328]],"properties":{"label":"lekeketafo"}},{"type":"Polygon","arcs":[[271,272,273,1814,-3343,270]],"properties":{"label":"kyuleka"}},{"type":"Polygon","arcs":[[-3047,-3046,-3045,1984,1985,1986]],"properties":{"label":"lubi"}},{"type":"Polygon","arcs":[[-1219,-1218,-1217,3344,-3143,-2164]],"properties":{"label":"esfleta"}},{"type":"Polygon","arcs":[[3345,-1000,-999,-3344,-3327,-2493]],"properties":{"label":"ozogozone"}},{"type":"Polygon","arcs":[[-1870,-1869,1471,1472,384,385,386,-252,-251,-250,-249,-248,-3049,-3048,-3054,-864,-863,-862,-861,-860,-859,-858,-2828,-2827,-2826,-1871]],"properties":{"label":"anbuespa"}},{"type":"Polygon","arcs":[[-3221,-1743,-2880,132,2169,2170]],"properties":{"label":"bugo"}},{"type":"Polygon","arcs":[[-1003,-1002,-1001,-3346,-2492,1608]],"properties":{"label":"sefusesii"}},{"type":"Polygon","arcs":[[-1815,274,3346,3347,-3055,-1816]],"properties":{"label":"esflesu"}},{"type":"Polygon","arcs":[[-2205,-2204,-2983,-2453,-2224,-2223]],"properties":{"label":"opi"}},{"type":"Polygon","arcs":[[3348,-1131,-886,-885,1486,-2753]],"properties":{"label":"argofleanlu"}},{"type":"Polygon","arcs":[[-3214,-3213,-3212,-3211,-3210,978,979,980,981,982,983,984,-3342,-3341,-3340,-3339,-3338,-2426,-2425,-2424,-2423,-2422]],"properties":{"label":"luneitape"}},{"type":"Polygon","arcs":[[-1990,1163,1164,1165,788,-3330]],"properties":{"label":"maannasile"}},{"type":"Polygon","arcs":[[-1503,-2015,-2014,-2013,-2194,-1512]],"properties":{"label":"pies"}},{"type":"Polygon","arcs":[[1484,1485,-1132,-3349,-2752,3349]],"properties":{"label":"sibo"}},{"type":"Polygon","arcs":[[-395,-1014,-510,-2910,-1230,-1229]],"properties":{"label":"arkafoko"}},{"type":"Polygon","arcs":[[-3255,-3254,-3259,-3264,-1821,-3056,-3348,-3347,275,276,277,278,279,280,281,282,-3263,-3256]],"properties":{"label":"lepeokekyu"}},{"type":"Polygon","arcs":[[3350,1483,-3350,-2751,204]],"properties":{"label":"kyusu"}},{"type":"Polygon","arcs":[[-2904,-3023,-1529,-1528,-3229,-2411]],"properties":{"label":"onope"}},{"type":"Polygon","arcs":[[-2445,-2444,28,-2127,-2126,-2125,-2124,-2287,-2286,1238,-2448,-2447,-2446]],"properties":{"label":"sisepafu"}},{"type":"Polygon","arcs":[[-3345,-1216,-1215,3351,-3145,-3144]],"properties":{"label":"floi"}},{"type":"Polygon","arcs":[[-560,-2051,1482,-3351,205]],"properties":{"label":"bukyuar"}},{"type":"Polygon","arcs":[[-508,-507,-506,2284,-1842,-2911]],"properties":{"label":"anpa"}},{"type":"Polygon","arcs":[[1085,-2551,-2550,-2549,-2548,-2119,219,-2313,-2312,-2311,139,140,141,1083,1084]],"properties":{"label":"kanaes"}},{"type":"Polygon","arcs":[[-1105,-1104,-1103,-1992,-2209,3352]],"properties":{"label":"piflepego"}},{"type":"Polygon","arcs":[[-3196,-3195,-3202,3353,3354,-3197]],"properties":{"label":"nasusekaar"}},{"type":"Polygon","arcs":[[3355,3356,3357,-3117,1884,1885]],"properties":{"label":"kafukabi"}},{"type":"Polygon","arcs":[[-698,-697,1006,-3216,-3314,-3332]],"properties":{"label":"leseno"}},{"type":"Polygon","arcs":[[-3173,1243,1244,1245,1246,1247]],"properties":{"label":"sibusekopa"}},{"type":"Polygon","arcs":[[-798,3358,3359,2049,1005,-799]],"properties":{"label":"kakyupa"}},{"type":"Polygon","arcs":[[-3103,3360,-1387,-1386,-3105,-3104]],"properties":{"label":"gobosinekyu"}},{"type":"Polygon","arcs":[[-2931,-2707,-410,-409,-1830,-1829,-1828,-1827,-2177,873,-2461,-2460]],"properties":{"label":"tagoesna"}},{"type":"Polygon","arcs":[[-2316,-3253,-3252,-2348,-1367,-1366,-1365,-1364,-733,-732,-731,-3119,-3118,-3358,-3357,-3356,1886,1887]],"properties":{"label":"ankokoar"}},{"type":"Polygon","arcs":[[-466,-465,-464,-463,-1391,-1390,-1125,-1124,-1129,-1128,-1389,-1388,-3361,-3102,-3101,-3100,-470,-469,-468,-467]],"properties":{"label":"oo"}},{"type":"Polygon","arcs":[[-3106,-1372,-1371,1778,1779,1780]],"properties":{"label":"triflotrisi"}},{"type":"Polygon","arcs":[[-3359,-797,-796,-795,-1065,-1064,-1063,-1062,2048,-3360]],"properties":{"label":"peflepi"}},{"type":"Polygon","arcs":[[-2324,-3305,-1234,-1233,1840,1841,1842,1843,-2937,-499,-498,-497,-2326,-2325]],"properties":{"label":"kokobukano"}},{"type":"Polygon","arcs":[[1635,-775,-3278,-2917,-3274,1634]],"properties":{"label":"naka"}},{"type":"Polygon","arcs":[[-1972,-1971,-1970,-1969,-1987,-1986,-1985,-1984,-1263,-1262,-1261,-1260,-1259,-1258,-1257,-1256,-1255,-1254,-3293,-3292,-3291,-3336]],"properties":{"label":"anmai"}},{"type":"Polygon","arcs":[[41,42,43,44,1696,1697,1698,1699,1700,-3215,-2771,-2770]],"properties":{"label":"pisukyunoan"}},{"type":"Polygon","arcs":[[-3352,-1214,-1213,-627,155,-3146]],"properties":{"label":"bokofunale"}},{"type":"Polygon","arcs":[[-430,-429,-428,-2306,-820,-3112]],"properties":{"label":"susukyazo"}},{"type":"Polygon","arcs":[[366,-2934,1442,-2340,-3273,-3272]],"properties":{"label":"futribii"}},{"type":"Polygon","arcs":[[235,236,237,238,239,240,241,242,-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-3353,-2208,-2210,-1792,-1796,-1795,1407,1408,1409,1410,-2785,-2784,-2788,-2796,233,234]],"properties":{"label":"keanpino"}},{"type":"Polygon","arcs":[[-2782,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,-3198,-3355,-3354,-3201,-3200,-3199,116,117,118,119,120,121,122,-2783]],"properties":{"label":"kaesfota"}},{"type":"Polygon","arcs":[[-2793,-3262,-2879,-3304,963,964]],"properties":{"label":"ifuflena"}},{"type":"Polygon","arcs":[[-3279,2140,2141,-2310,-2309,-2308]],"properties":{"label":"arkyulefo"}}]},"6":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-707,-1543,3361,3362,3363,3364,3365,-2900,-2899,-2898,3366,3367,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708]],"properties":{"label":"fuflefo"}},{"type":"Polygon","arcs":[[-516,3368,3369,-681,-680,-679]],"properties":{"label":"opikyaanke"}},{"type":"Polygon","arcs":[[-2316,-3253,3370,-3356,1886,1887]],"properties":{"label":"inonoar"}},{"type":"Polygon","arcs":[[42,3371,3372,1699,3373]],"properties":{"label":"flefuan"}},{"type":"Polygon","arcs":[[3374,-1270,-1269,3375,3376,3377]],"properties":{"label":"tribukyabi"}},{"type":"Polygon","arcs":[[3378,3379,-498,-497,-2326,-2325]],"properties":{"label":"gopepipabo"}},{"type":"Polygon","arcs":[[3380,3341,985,986,3381,-2432]],"properties":{"label":"eso"}},{"type":"Polygon","arcs":[[-2877,-2876,-847,-2227,1437,3382]],"properties":{"label":"leko"}},{"type":"Polygon","arcs":[[-3376,-1268,-1267,-1266,-1265,3383]],"properties":{"label":"arpisuko"}},{"type":"Polygon","arcs":[[-566,3384,3385,3386,-568,-567]],"properties":{"label":"anessutri"}},{"type":"Polygon","arcs":[[2406,2407,2408,2409,2410,2411,2412,2413,-550,-549,-548,-547]],"properties":{"label":"flonao"}},{"type":"Polygon","arcs":[[-1985,-1984,-1263,-1262,3387,3388]],"properties":{"label":"pata"}},{"type":"Polygon","arcs":[[-2634,293,294,2942,1913,3389]],"properties":{"label":"bofulumabo"}},{"type":"Polygon","arcs":[[-929,-928,312,-2916,-2397,-930]],"properties":{"label":"zokyasuo"}},{"type":"Polygon","arcs":[[3390,3317,3318,-3242,-3241,-3240,-3239,3391,3392,3393,3394,3395,1572,1573,1574,1575,1576,1577]],"properties":{"label":"gonokapafle"}},{"type":"Polygon","arcs":[[3396,2325,-496,-495,-1501,3397]],"properties":{"label":"kakyaanflona"}},{"type":"Polygon","arcs":[[3398,-3377,-3384,-1264,1983,3044]],"properties":{"label":"nonafupifu"}},{"type":"Polygon","arcs":[[2381,2382,2383,3399,3400,2388]],"properties":{"label":"bubuanfle"}},{"type":"Polygon","arcs":[[-247,-246,3401,3402,3403,3048]],"properties":{"label":"kyunana"}},{"type":"Polygon","arcs":[[-3130,3404,3405,-2690,-2689,-3125]],"properties":{"label":"nelufotase"}},{"type":"Polygon","arcs":[[-3198,-3355,3406,1106,1107,1108]],"properties":{"label":"bukogofuzo"}},{"type":"Polygon","arcs":[[-1448,3407,-2378,3408,-1450,-1449]],"properties":{"label":"siikya"}},{"type":"Polygon","arcs":[[-2323,-1780,-2349,3251,3252,-2315]],"properties":{"label":"lusisisune"}},{"type":"Polygon","arcs":[[-3354,-3201,3409,1104,1105,-3407]],"properties":{"label":"kyutri"}},{"type":"Polygon","arcs":[[3410,1078,1079,1080,1081,1082,126,127,128,3056,3057,3411,3412,3413,3414]],"properties":{"label":"anle"}},{"type":"Polygon","arcs":[[-2773,3005,1704,1705,-2779,3006]],"properties":{"label":"floeslufle"}},{"type":"Polygon","arcs":[[3415,1897,1898,1899,1900,1901]],"properties":{"label":"sululesebu"}},{"type":"Polygon","arcs":[[1134,1135,1136,3416,3417,1133]],"properties":{"label":"antrisi"}},{"type":"Polygon","arcs":[[3418,663,2473,2474,2475,2476]],"properties":{"label":"pasufuselu"}},{"type":"Polygon","arcs":[[2342,-1172,-1773,-1774,3419,2346]],"properties":{"label":"kasu"}},{"type":"Polygon","arcs":[[1132,-3418,3420,-887,1130,1131]],"properties":{"label":"buarbo"}},{"type":"Polygon","arcs":[[-2543,-2542,-2541,2714,2715,950,951,952,190,191]],"properties":{"label":"mase"}},{"type":"Polygon","arcs":[[-1986,-3389,-3388,-1261,-1260,-1259,-1258,-1257,-1256,-1255,-1254,-3293,-3292,3421,3422,3423]],"properties":{"label":"fufosizo"}},{"type":"Polygon","arcs":[[3424,-2635,-3390,1914,195]],"properties":{"label":"kaflemakyabu"}},{"type":"Polygon","arcs":[[2228,2229,-2165,3142,3143,3144,3145,156,3425,3426,-1559,-1558]],"properties":{"label":"pikobibu"}},{"type":"Polygon","arcs":[[3427,-1901,3030,-2711,-2718,-2724]],"properties":{"label":"kaotasese"}},{"type":"Polygon","arcs":[[3428,830,831,832,-2691,-3406]],"properties":{"label":"flogo"}},{"type":"Polygon","arcs":[[-3417,1137,3429,-889,-888,-3421]],"properties":{"label":"ikogo"}},{"type":"Polygon","arcs":[[-300,2467,3430,-303,-302,-301]],"properties":{"label":"gonaesko"}},{"type":"Polygon","arcs":[[582,583,584,3431,3432,581]],"properties":{"label":"esnokatri"}},{"type":"Polygon","arcs":[[1636,-2362,184]],"properties":{"label":"kyagobi"}},{"type":"Polygon","arcs":[[3433,917,918,919,-584,3434]],"properties":{"label":"buansekoka"}},{"type":"Polygon","arcs":[[39,40,2769,3435,3436,2774,3437]],"properties":{"label":"pebusi"}},{"type":"Polygon","arcs":[[-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-890,-3430,1138,1139,1140,1141,3438,3439,3440,3441,3442]],"properties":{"label":"ookyunaes"}},{"type":"Polygon","arcs":[[338,339,3443,-1552,-2810,-2889]],"properties":{"label":"kobunosizo"}},{"type":"Polygon","arcs":[[3444,3445,-3435,-583,3446,3447]],"properties":{"label":"boarflokyune"}},{"type":"Polygon","arcs":[[3448,1707,1708,3449,3450,3451]],"properties":{"label":"flotaanar"}},{"type":"Polygon","arcs":[[-1375,-1374,-1373,3105,1781,3452]],"properties":{"label":"pakyufono"}},{"type":"Polygon","arcs":[[894,895,896,897,3453,3454,3455,-3445,-3448,-3447,-582,-581,-580,-579,-288,-287,1030,1031,1032,1033,1034,893]],"properties":{"label":"gofuesna"}},{"type":"Polygon","arcs":[[-2145,2366,3456,136]],"properties":{"label":"sukeno"}},{"type":"Polygon","arcs":[[1825,212,-3284,3457,-2383,3458]],"properties":{"label":"pesi"}},{"type":"Polygon","arcs":[[563,564,565,2389,2390,-2380,-2379,-755,-754,3459,3460,3461,3462,3463,3464,3465]],"properties":{"label":"suketai"}},{"type":"Polygon","arcs":[[3466,-240,-239,-238,3467,3468]],"properties":{"label":"suoarmakyu"}},{"type":"Polygon","arcs":[[1473,1474,-1878,3469,3470,-1445]],"properties":{"label":"lutrisi"}},{"type":"Polygon","arcs":[[1379,1380,-3002,-3001,-3000,-2961,-2960,-2959,-2958,-2957,-2956,1376,1377,1378]],"properties":{"label":"flefo"}},{"type":"Polygon","arcs":[[-3438,2775,3471,38]],"properties":{"label":"lukyuflo"}},{"type":"Polygon","arcs":[[3472,633,3473,3474,3475,675]],"properties":{"label":"kosutano"}},{"type":"Polygon","arcs":[[614,3476,3477,3478,3479,3480,-1377,-1376,-3453,1782,1783,1784,1785,1786,1787,1788,1789,1790]],"properties":{"label":"pakafufoflo"}},{"type":"Polygon","arcs":[[612,613,-1791,3481,3482,3483,3484,3485,3486,1895,1896,-3416,1902,1903,604,605,606,607,608,609,610,611]],"properties":{"label":"kefolupane"}},{"type":"Polygon","arcs":[[-3472,2776,3487,3488,37]],"properties":{"label":"ipazobio"}},{"type":"Polygon","arcs":[[3489,3490,3491,1963,827,828,829,-3429,-3405,-3129,-3128,-3127,849,850]],"properties":{"label":"nakeflesear"}},{"type":"Polygon","arcs":[[-2350,-2170,133,3492,-2298]],"properties":{"label":"isipema"}},{"type":"Polygon","arcs":[[-3200,3493,3494,3495,1103,-3410]],"properties":{"label":"naantriarbu"}},{"type":"Polygon","arcs":[[3496,3497,3498,3499,3500,3501]],"properties":{"label":"flone"}},{"type":"Polygon","arcs":[[2777,2778,1706,-3449,3502,-3488]],"properties":{"label":"kyapiko"}},{"type":"Polygon","arcs":[[3503,66,-2988,3504]],"properties":{"label":"flesi"}},{"type":"Polygon","arcs":[[3505,3506,1929,811,812,3507]],"properties":{"label":"nonolepa"}},{"type":"Polygon","arcs":[[3508,2319,3509,1602,1603,3510]],"properties":{"label":"kyuzoi"}},{"type":"Polygon","arcs":[[-1654,3511,3512,3513,60,61,62,-3300,-3299,-3298,-3297,3514,3515,776,777,-1656,-1655]],"properties":{"label":"bukear"}},{"type":"Polygon","arcs":[[500,3516,-3511,1604,1605,1606]],"properties":{"label":"fopasi"}},{"type":"Polygon","arcs":[[630,631,632,-3473,676,677]],"properties":{"label":"pelu"}},{"type":"Polygon","arcs":[[284,3517,-2403,-2633,3518,388]],"properties":{"label":"luzo"}},{"type":"Polygon","arcs":[[3519,-2151,-2639,3520,3521,3522]],"properties":{"label":"fusiananse"}},{"type":"Polygon","arcs":[[-486,-485,3523,3524,3525,3526,-1020,-1019,1671,1672,-2842,3038,3039,3040]],"properties":{"label":"kyakegokafo"}},{"type":"Polygon","arcs":[[2316,2317,2318,-3509,-3517,501]],"properties":{"label":"nenapepasu"}},{"type":"Polygon","arcs":[[959,-2365,-1748,2403,957,958]],"properties":{"label":"triflosezo"}},{"type":"Polygon","arcs":[[3527,3528,3529,3530,3531,3532]],"properties":{"label":"mapaesfo"}},{"type":"Polygon","arcs":[[3533,3534,3535,3536,239,240]],"properties":{"label":"tribona"}},{"type":"Polygon","arcs":[[-2299,-3493,134,3537]],"properties":{"label":"legolepa"}},{"type":"Polygon","arcs":[[3538,3539,796,797,3540,-2553]],"properties":{"label":"triflo"}},{"type":"Polygon","arcs":[[-3482,-1790,1892,1893,3541,-3483]],"properties":{"label":"bioesfo"}},{"type":"Polygon","arcs":[[1828,1829,-408,-407,-406,-405,560,3542,-3463,-3462,-3461,-3460,-753,2391]],"properties":{"label":"kokyapisesi"}},{"type":"Polygon","arcs":[[1635,-775,-3278,-2917,-3274,1634]],"properties":{"label":"bofleneka"}},{"type":"Polygon","arcs":[[3543,3544,-3116,-689,-688,3545]],"properties":{"label":"nalu"}},{"type":"Polygon","arcs":[[-2554,-3541,798,799,-2041,-2520]],"properties":{"label":"espaka"}},{"type":"Polygon","arcs":[[-3484,-3542,1894,-3487,-3486,-3485]],"properties":{"label":"taanbifle"}},{"type":"Polygon","arcs":[[3546,-994,-2322,-2321,-2320,-2319]],"properties":{"label":"bofupe"}},{"type":"Polygon","arcs":[[3,3547,-2986,-2975,3548]],"properties":{"label":"silusego"}},{"type":"Polygon","arcs":[[-1591,3549,2488,3550,3551,3552]],"properties":{"label":"gobuzosu"}},{"type":"Polygon","arcs":[[2501,2502,-648,-647,-1169,-291]],"properties":{"label":"naflesi"}},{"type":"Polygon","arcs":[[1607,2491,2492,2493,2494,2495,2496,2497,-995,-3547,-2318,-2317,502,503,504,505,-806,-805]],"properties":{"label":"nepepafle"}},{"type":"Polygon","arcs":[[52,3553,2952]],"properties":{"label":"zoko"}},{"type":"Polygon","arcs":[[3227,65,-3504,3554,3555]],"properties":{"label":"kakyu"}},{"type":"Polygon","arcs":[[2477,1286,2063,2064,2065,2066]],"properties":{"label":"triesnebuo"}},{"type":"Polygon","arcs":[[-2371,-2344,-1982,-1981,-298,-297]],"properties":{"label":"anlefleluko"}},{"type":"Polygon","arcs":[[286,287,288,-2401,-3518,285]],"properties":{"label":"foi"}},{"type":"Polygon","arcs":[[2480,3556,3557,3558,3559,3560,3561,3562,-933,-2400,2478,2479,2154,2155,2156,2157,179,180,181]],"properties":{"label":"kafuluboes"}},{"type":"Polygon","arcs":[[578,3563,-2580,-2502,-290,-289]],"properties":{"label":"arpago"}},{"type":"Polygon","arcs":[[2528,2529,-959,-2018,-2017,3564]],"properties":{"label":"fuflezo"}},{"type":"Polygon","arcs":[[3565,3091,3092,3093,3094,3566]],"properties":{"label":"paanesma"}},{"type":"Polygon","arcs":[[3047,-3404,3567,3568,-865,3053]],"properties":{"label":"naike"}},{"type":"Polygon","arcs":[[3569,3570,3571,3572,3573,3574,1823,1824,-3459,-2382,-2389,-2388,146,147,148,149]],"properties":{"label":"olekya"}},{"type":"Polygon","arcs":[[2367,-2300,-3538,135,-3457]],"properties":{"label":"nanaopa"}},{"type":"Polygon","arcs":[[580,-3433,3575,-2577,-3564,579]],"properties":{"label":"bibupena"}},{"type":"Polygon","arcs":[[2526,2527,-3565,-2016,1213,1214]],"properties":{"label":"kyubi"}},{"type":"Polygon","arcs":[[904,1641,1642,1643,3576,903]],"properties":{"label":"lelenesu"}},{"type":"Polygon","arcs":[[-1787,-1786,-1890,3577,3578,2556]],"properties":{"label":"zonei"}},{"type":"Polygon","arcs":[[1838,-1594,3579,3580,3581,2484]],"properties":{"label":"gobi"}},{"type":"Polygon","arcs":[[3582,3583,-3578,-1889,-1888,-1887,-1886,2557,2558,3584]],"properties":{"label":"kepi"}},{"type":"Polygon","arcs":[[1035,1036,1037,3585,-2977,-2971,1053,1054,1055,1056,1057,1058,209,210,1059]],"properties":{"label":"makyaesle"}},{"type":"Polygon","arcs":[[-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,300,301,2537,2538,2539,2540,2541,2542,192,193,194]],"properties":{"label":"zoluiar"}},{"type":"Polygon","arcs":[[-3470,-1877,-1876,-1875,-2375,3586]],"properties":{"label":"iarkyafuno"}},{"type":"Polygon","arcs":[[-3521,-2638,-1857,-1856,3587,3588]],"properties":{"label":"funo"}},{"type":"Polygon","arcs":[[-3427,-3426,157,-2648,-1560]],"properties":{"label":"pafu"}},{"type":"Polygon","arcs":[[3589,3590,3591,3592,-859,3593]],"properties":{"label":"ieszo"}},{"type":"Polygon","arcs":[[1101,1102,-3496,-3495,3594,3595,117,118,119,3596,3597,3598,1098,1099,1100]],"properties":{"label":"bunopiflofu"}},{"type":"Polygon","arcs":[[3599,-883,-882,-2511,-2510,-2509]],"properties":{"label":"fletama"}},{"type":"Polygon","arcs":[[3600,-1795,1407,3601,3602,3603]],"properties":{"label":"pafu"}},{"type":"Polygon","arcs":[[-1593,-1592,-3553,3604,3605,-3580]],"properties":{"label":"foar"}},{"type":"Polygon","arcs":[[3606,-3583,-3585,2559,2560,2561]],"properties":{"label":"kyuma"}},{"type":"Polygon","arcs":[[3607,-2275,-2274,-2273,-372,-2808]],"properties":{"label":"arinoar"}},{"type":"Polygon","arcs":[[3608,-724,-723,-722,-721,-720,-632,-631,-1195,-2221,3609,3610]],"properties":{"label":"ozolu"}},{"type":"Polygon","arcs":[[2555,-3579,-3584,-3607,2562,-2525]],"properties":{"label":"koflolubi"}},{"type":"Polygon","arcs":[[902,-3577,1644,3611,900,901]],"properties":{"label":"kyaleflepema"}},{"type":"Polygon","arcs":[[-1779,-1370,-1369,-1368,2347,2348]],"properties":{"label":"kaarmakya"}},{"type":"Polygon","arcs":[[3612,-2271,-2276,-3608,-2807,-2762]],"properties":{"label":"matriflefu"}},{"type":"Polygon","arcs":[[2483,-3582,3613,3614,482,2490]],"properties":{"label":"fonetribo"}},{"type":"Polygon","arcs":[[588,589,921,3615,1320,3616]],"properties":{"label":"zoarpepe"}},{"type":"Polygon","arcs":[[3617,3618,-2272,-3613,-2761,3619]],"properties":{"label":"anlelufle"}},{"type":"Polygon","arcs":[[3620,-2132,-2131,-2130,-2129,2289,2290,2291,2292,-2607,-2606,-2605,-1703,-2523,2616,3621,3622,3623]],"properties":{"label":"pitrilefle"}},{"type":"Polygon","arcs":[[-3616,922,923,3624,2597,1319]],"properties":{"label":"koflosipe"}},{"type":"Polygon","arcs":[[3625,3626,3627,-321,-320,-319]],"properties":{"label":"noestri"}},{"type":"Polygon","arcs":[[-2659,3628,3629,-2699,-2698,3027]],"properties":{"label":"tapabubi"}},{"type":"Polygon","arcs":[[-2533,-2982,3630,-2536,-2535,-2534]],"properties":{"label":"letama"}},{"type":"Polygon","arcs":[[-2622,-2561,3631,3632,2116,-1899]],"properties":{"label":"supi"}},{"type":"Polygon","arcs":[[3633,3634,-3594,-858,-2828,-2827]],"properties":{"label":"arzolego"}},{"type":"Polygon","arcs":[[3635,1153,-3004,3636,-3629,-2658]],"properties":{"label":"ookyubu"}},{"type":"Polygon","arcs":[[2589,2590,2591,2592,2593,2594,-2112,-2111,-2110,-2109,-725,-3609,3637,3638,3639,-2219,1418,1419,1420,1421,1422,1423,596,597]],"properties":{"label":"kokyukyafupa"}},{"type":"Polygon","arcs":[[3640,-3632,-2560,-2559,3641,3642,3643,3644,3645,3646]],"properties":{"label":"sunemanopi"}},{"type":"Polygon","arcs":[[-3455,-3454,898,899,-3612,1645,1646,913,914,915,916,-3434,-3446,-3456]],"properties":{"label":"kyabiine"}},{"type":"Polygon","arcs":[[2614,2615,2022,3647,3648,3649]],"properties":{"label":"kaararle"}},{"type":"Polygon","arcs":[[3650,3651,3652,-2630,-2647,489]],"properties":{"label":"bobo"}},{"type":"Polygon","arcs":[[386,-252,3653,3654,-3591,3655]],"properties":{"label":"anbioes"}},{"type":"Polygon","arcs":[[3656,3657,2433,990,991,3658]],"properties":{"label":"kees"}},{"type":"Polygon","arcs":[[3659,2613,-3650,3660,-918,-917]],"properties":{"label":"eslenopiko"}},{"type":"Polygon","arcs":[[494,3661,3662,3663,3664,3665,1836,1837,-2485,-2484,-2631,-3653,-3652,-3651,490,491,492,493]],"properties":{"label":"ipa"}},{"type":"Polygon","arcs":[[-3543,561,562,-3466,-3465,-3464]],"properties":{"label":"goluo"}},{"type":"Polygon","arcs":[[3666,3667,1620,1621,221,222]],"properties":{"label":"noluiiar"}},{"type":"Polygon","arcs":[[1187,3668,2763,2764,-370,-369,-368,-367,-366,-2573,-2703,-2702,-2701,-2700]],"properties":{"label":"flepena"}},{"type":"Polygon","arcs":[[48,2656,2657,2658,2659]],"properties":{"label":"suflekyu"}},{"type":"Polygon","arcs":[[-798,3358,3359,2049,1005,-799]],"properties":{"label":"konefunone"}},{"type":"Polygon","arcs":[[-2150,-2149,2636,-1858,2637,2638]],"properties":{"label":"onebu"}},{"type":"Polygon","arcs":[[-1234,3669,3670,-3379,-2324,-3305]],"properties":{"label":"pakaluboan"}},{"type":"Polygon","arcs":[[46,-1152,-1151,-1150,-1149,-1094,1493,-2134,-2133,-3621,-3624,-3623,-3622,2617,2618,2619,2620]],"properties":{"label":"bule"}},{"type":"Polygon","arcs":[[-1870,-1869,1471,1472,384,385,-3656,-3590,-3635,-3634,-2826,-1871]],"properties":{"label":"anfleanpatri"}},{"type":"Polygon","arcs":[[1115,-3194,3671,246,247,248]],"properties":{"label":"takyuesna"}},{"type":"Polygon","arcs":[[3672,3673,3674,-3618,3675,3676]],"properties":{"label":"nezokyu"}},{"type":"Polygon","arcs":[[-572,3677,3678,-1753,-1752,-1751]],"properties":{"label":"kapapi"}},{"type":"Polygon","arcs":[[3679,2816,-2262,-2261,-3619,-3675]],"properties":{"label":"flotri"}},{"type":"Polygon","arcs":[[3134,3680,3681,3682,173,3683]],"properties":{"label":"bikaespe"}},{"type":"Polygon","arcs":[[3684,-1728,-1727,-1726,-1725,-1724,977,3209,3210,3211]],"properties":{"label":"buananno"}},{"type":"Polygon","arcs":[[3685,-2749,-2625,3025,3686,3687]],"properties":{"label":"iarfu"}},{"type":"Polygon","arcs":[[-1589,2485,2486,2487,-3550,-1590]],"properties":{"label":"siflogo"}},{"type":"Polygon","arcs":[[-1686,-1685,3688,-643,-642,-1687]],"properties":{"label":"buta"}},{"type":"Polygon","arcs":[[496,3689,3690,3691,-3662,495]],"properties":{"label":"tripano"}},{"type":"Polygon","arcs":[[364,365,3271,3692,3693,363]],"properties":{"label":"fopenoka"}},{"type":"Polygon","arcs":[[-1684,3694,-362,-361,-644,-3689]],"properties":{"label":"oibies"}},{"type":"Polygon","arcs":[[498,499,-1607,3695,-3690,497]],"properties":{"label":"trizo"}},{"type":"Polygon","arcs":[[-3661,-3649,3696,-2602,3697,-919]],"properties":{"label":"arsubo"}},{"type":"Polygon","arcs":[[670,3698,2531,2532,2533,2534,2535,2536,-2336,-2335,-2356,-2355,2059,2060,-336,3699,3700,3701,3702,3703,1267,1268,1269,1270,668,669]],"properties":{"label":"nopi"}},{"type":"Polygon","arcs":[[3704,-1222,-2167,-3183,-1555,-1554]],"properties":{"label":"masiarzo"}},{"type":"Polygon","arcs":[[3705,3706,3707,3708,3709,1724]],"properties":{"label":"flebopago"}},{"type":"Polygon","arcs":[[1323,1324,-1814,-2704,-2610,1334]],"properties":{"label":"kyakekyukya"}},{"type":"Polygon","arcs":[[-1602,-1601,1831,1832,1833,1834,1835,-3666,-3665,-3664,-3663,-3692,-3691,-3696,-1606,-1605,-1604,-1603]],"properties":{"label":"flokezo"}},{"type":"Polygon","arcs":[[3710,3133,-3684,174,3711]],"properties":{"label":"pimapema"}},{"type":"Polygon","arcs":[[3712,1448,-2741,-2245,-2244,356,357,358,359,360,3713,-3533,-3532,-3531]],"properties":{"label":"gobu"}},{"type":"Polygon","arcs":[[1183,3714,3715,-2571,-2575,-2574,-364,-363,-3695,-1683,-1682,-1681,1181,1182]],"properties":{"label":"gosekyuneka"}},{"type":"Polygon","arcs":[[3716,3717,-1796,-3601,3718,-3536]],"properties":{"label":"bisuarbogo"}},{"type":"Polygon","arcs":[[602,2722,2723,-2717,600,601]],"properties":{"label":"lusu"}},{"type":"Polygon","arcs":[[-1306,-1305,-1304,3719,3720,3721,3722,3723,3724,-2860,-2750,-3686,3725,3726,-1314,-1313,-1312,-1311,-1310,-1309,-1308,-1307]],"properties":{"label":"goluflolego"}},{"type":"Polygon","arcs":[[-3602,1408,1409,1410,-2785,3727]],"properties":{"label":"bupileleno"}},{"type":"Polygon","arcs":[[2262,-2722,-2729,-2728,-2727,756,2264,2265,2266,2267,2268,-2570,-2569,2261]],"properties":{"label":"trikokolu"}},{"type":"Polygon","arcs":[[-1904,-1903,-1902,-3428,-2723,603]],"properties":{"label":"kagosetata"}},{"type":"Polygon","arcs":[[-312,3728,3729,-315,-314,-313]],"properties":{"label":"fleboarkyakyu"}},{"type":"Polygon","arcs":[[2104,2105,-674,3730,2102,2103]],"properties":{"label":"trisui"}},{"type":"Polygon","arcs":[[235,236,237,238,-3537,-3719,-3604,-3603,-3728,-2784,-2788,-2796,233,234]],"properties":{"label":"nakyabofloko"}},{"type":"Polygon","arcs":[[1185,1186,2699,3731,-3715,1184]],"properties":{"label":"tritribi"}},{"type":"Polygon","arcs":[[857,858,859,3732,3733,856]],"properties":{"label":"kofloimapa"}},{"type":"Polygon","arcs":[[3734,3735,3736,2693,3737,842]],"properties":{"label":"kofufle"}},{"type":"Polygon","arcs":[[3738,-607,-606,3739,3740,3741]],"properties":{"label":"palekya"}},{"type":"Polygon","arcs":[[-3732,2700,2701,2702,-2572,-3716]],"properties":{"label":"lunabu"}},{"type":"Polygon","arcs":[[-2867,-3296,558,559,206,-2856]],"properties":{"label":"lubosi"}},{"type":"Polygon","arcs":[[3742,3743,3744,3745,-2189,-2188,-1329,-1919,-1918,-1917,-2168,-1011]],"properties":{"label":"lulenegoma"}},{"type":"Polygon","arcs":[[-927,3746,3747,3748,2588,-661,-660,-659,-658,-657]],"properties":{"label":"kaan"}},{"type":"Polygon","arcs":[[1028,-3160,-2929,3749,3185,1027]],"properties":{"label":"funokyu"}},{"type":"Polygon","arcs":[[3750,3751,-939,-2238,-2175,3752]],"properties":{"label":"leflositaes"}},{"type":"Polygon","arcs":[[-1316,3753,3754,461,462,463]],"properties":{"label":"itribueses"}},{"type":"Polygon","arcs":[[3755,3756,-3753,-2174,186]],"properties":{"label":"ketanogoko"}},{"type":"Polygon","arcs":[[2128,2129,2130,2131,2132,2133,1494,1495,-2756,-2755,792,793,794,795,-3540,-3539,-2552,2127]],"properties":{"label":"fupagosu"}},{"type":"Polygon","arcs":[[1361,1362,-488,2839,3757,1360]],"properties":{"label":"kyukyukyabulu"}},{"type":"Polygon","arcs":[[-3727,-3726,-3688,3758,-3754,-1315]],"properties":{"label":"zokepibukya"}},{"type":"Polygon","arcs":[[2580,2581,2582,2583,2584,2585,2586,2587,-3749,-3748,-3747,-926,-925,-924]],"properties":{"label":"eszo"}},{"type":"Polygon","arcs":[[3130,3131,3132,-3711,3759,176]],"properties":{"label":"nefleko"}},{"type":"Polygon","arcs":[[3760,3761,3762,-3558,-3557,2481]],"properties":{"label":"bipe"}},{"type":"Polygon","arcs":[[-3733,860,1201,1961,3763,3764]],"properties":{"label":"fokosuiflo"}},{"type":"Polygon","arcs":[[3765,1311,1312,2643,2644,2645]],"properties":{"label":"kyuikeigo"}},{"type":"Polygon","arcs":[[3766,834,-2547,2691,2692,-3737]],"properties":{"label":"near"}},{"type":"Polygon","arcs":[[-3188,-3177,3767,3768,-3678,-571]],"properties":{"label":"bupekyubosu"}},{"type":"Polygon","arcs":[[3769,3770,3771,-3497,3772,3773]],"properties":{"label":"lukyakya"}},{"type":"Polygon","arcs":[[2607,-1317,468,469,470,2608]],"properties":{"label":"flone"}},{"type":"Polygon","arcs":[[2181,2182,2183,2184,-3025,3774,3775,3776,3777,-1330,2187,2188,2189,2190,3778,3779]],"properties":{"label":"kepakasefle"}},{"type":"Polygon","arcs":[[3780,-2661,-2268,-2267,3781,3782,3783,3784,3785,3786]],"properties":{"label":"pafo"}},{"type":"Polygon","arcs":[[-2429,3787,3340,-3381,-2431,-2430]],"properties":{"label":"mano"}},{"type":"Polygon","arcs":[[2795,-2787,-2794,-1076,2796,232]],"properties":{"label":"leleflofo"}},{"type":"Polygon","arcs":[[2759,2760,2761,2762,-3669,1188]],"properties":{"label":"flese"}},{"type":"Polygon","arcs":[[-2427,3337,3338,3339,-3788,-2428]],"properties":{"label":"sukya"}},{"type":"Polygon","arcs":[[3788,-353,-352,3789,2921,2922]],"properties":{"label":"gokyufufle"}},{"type":"Polygon","arcs":[[3790,-1289,-1318,-2608,3791,-2487]],"properties":{"label":"piotritrino"}},{"type":"Polygon","arcs":[[2871,3792,3793,3794,3795,2870]],"properties":{"label":"futaanko"}},{"type":"Polygon","arcs":[[3796,3797,3798,-2736,-2586,-2585]],"properties":{"label":"ibose"}},{"type":"Polygon","arcs":[[2468,2469,3799,-305,-304,-3431]],"properties":{"label":"kobi"}},{"type":"Polygon","arcs":[[3800,-3562,-3561,-3560,-3559,-3763]],"properties":{"label":"mazomaar"}},{"type":"Polygon","arcs":[[3801,1455,3802,3803,3804,3805]],"properties":{"label":"fulu"}},{"type":"Polygon","arcs":[[-1587,-1586,-1290,-3791,-2486,-1588]],"properties":{"label":"noseke"}},{"type":"Polygon","arcs":[[2246,1454,-3802,3806,3807,350,351,352,353,354,355,2243,2244,2245,-1514,-1519,-1518,-1517]],"properties":{"label":"eskaes"}},{"type":"Polygon","arcs":[[3808,-3764,1962,-3492,-3491,3809]],"properties":{"label":"kenofuanke"}},{"type":"Polygon","arcs":[[3810,122,-2783]],"properties":{"label":"nogoesflees"}},{"type":"Polygon","arcs":[[-1741,-1740,-1739,-1738,-1737,-1736,-2173,2294,-2743,-2742,-2744,2302,-2143,-2142,-2141,-2140,-1618,-1617,-1616,-1615]],"properties":{"label":"nabine"}},{"type":"Polygon","arcs":[[-2804,-1122,124,3811,3012]],"properties":{"label":"kyamaluzono"}},{"type":"Polygon","arcs":[[-3808,-3807,-3806,3812,3813,349]],"properties":{"label":"gooboan"}},{"type":"Polygon","arcs":[[2282,-940,-3752,-3751,-3757,-3756,187,188,189,-953,-952,3814,3815]],"properties":{"label":"bomafloka"}},{"type":"Polygon","arcs":[[1331,1332,-608,-3739,3816,-2812]],"properties":{"label":"anpebupi"}},{"type":"Polygon","arcs":[[592,3817,3818,3819,2940,591]],"properties":{"label":"kalu"}},{"type":"Polygon","arcs":[[3820,1072,3821,3822,3823,3824]],"properties":{"label":"lean"}},{"type":"Polygon","arcs":[[3825,1310,-3766,2639,2640,1292,1293,1294,1295,-989,-988,-987,-986,-985,-984,3826,3827,3828,3829,3830,3831,3832,3833,3834]],"properties":{"label":"ine"}},{"type":"Polygon","arcs":[[3009,3010,3835,-1082,-1081,3836]],"properties":{"label":"piesgofoma"}},{"type":"Polygon","arcs":[[3837,-3797,-2584,-2583,-2582,2939,-3820,-3819,-3818,593,594,595,-1424,-1423,3838,3839]],"properties":{"label":"kofloflo"}},{"type":"Polygon","arcs":[[3840,3841,-3567,3095,3842,-3083]],"properties":{"label":"lelefui"}},{"type":"Polygon","arcs":[[-2662,-3781,-3787,3843,3844,2273]],"properties":{"label":"sukabiogo"}},{"type":"Polygon","arcs":[[3845,-3741,-3740,-605,-604,-603,1808,1809,1810,3846]],"properties":{"label":"sionearna"}},{"type":"Polygon","arcs":[[3847,3848,-2243,-2725,-2737,-3799]],"properties":{"label":"kafusuo"}},{"type":"Polygon","arcs":[[3849,-3414,-3413,3850,1737,1738]],"properties":{"label":"bona"}},{"type":"Polygon","arcs":[[3851,-3824,3852,1619,-3668,3853]],"properties":{"label":"nokyanasika"}},{"type":"Polygon","arcs":[[-2709,2099,3854,-667,-666,3855]],"properties":{"label":"aresfufle"}},{"type":"Polygon","arcs":[[2470,3856,1978,1979,-306,-3800]],"properties":{"label":"suma"}},{"type":"Polygon","arcs":[[83,84,1994,1995,3857,3858,-3092,-3091,3859,3860,3861,3862,3863]],"properties":{"label":"lekomafu"}},{"type":"Polygon","arcs":[[-3722,3864,-2861,-3725,-3724,-3723]],"properties":{"label":"bike"}},{"type":"Polygon","arcs":[[-935,-934,-3563,-3801,-3762,3865]],"properties":{"label":"sekyupio"}},{"type":"Polygon","arcs":[[-1872,2825,2826,3866,2823,2824]],"properties":{"label":"goflobilu"}},{"type":"Polygon","arcs":[[2869,-3796,3867,2149,2150,2151]],"properties":{"label":"sibiflo"}},{"type":"Polygon","arcs":[[3868,3869,3870,-2182,-2181,-3071]],"properties":{"label":"pepi"}},{"type":"Polygon","arcs":[[376,377,378,-2847,-1467,-2868]],"properties":{"label":"sisuan"}},{"type":"Polygon","arcs":[[-3193,1949,3871,244,245,-3672]],"properties":{"label":"bofoo"}},{"type":"Polygon","arcs":[[107,-3220,-1759,-1758,-1757,-1756,-1755,-1754,-3679,-3769,3872,3873,3874]],"properties":{"label":"lubunalupe"}},{"type":"Polygon","arcs":[[3875,2223,2224,2225,-2183,-3871]],"properties":{"label":"goke"}},{"type":"Polygon","arcs":[[-2813,-3817,-3742,-3846,3876,1326]],"properties":{"label":"kear"}},{"type":"Polygon","arcs":[[-1158,3877,3878,3879,3880,-1159]],"properties":{"label":"bikeeslu"}},{"type":"Polygon","arcs":[[1325,-3877,-3847,1811,1812,1813]],"properties":{"label":"nofo"}},{"type":"Polygon","arcs":[[-3387,3881,-3178,3187,-570,-569]],"properties":{"label":"goartale"}},{"type":"Polygon","arcs":[[-3840,-3839,-1422,-1421,-1420,-1419,-1418,-1417,-1198,-2240,-3849,-3848,-3798,-3838]],"properties":{"label":"biflo"}},{"type":"Polygon","arcs":[[3882,3883,3884,3885,3886,3887,436,437,438,439,440,441,442,3888]],"properties":{"label":"fuarfues"}},{"type":"Polygon","arcs":[[1024,1025,-2207,3889,3890,-2881]],"properties":{"label":"kyanoanka"}},{"type":"Polygon","arcs":[[1721,-2869,-1477,-1476,-1475,-1624]],"properties":{"label":"bitri"}},{"type":"Polygon","arcs":[[3891,2874,-2789,-852,-851,-850,-849,-848,2875,3892]],"properties":{"label":"anmape"}},{"type":"Polygon","arcs":[[3893,3894,3895,-2231,1255,1256,1257,1258,3896,3897,3898,3899,3900,3901]],"properties":{"label":"tataan"}},{"type":"Polygon","arcs":[[2465,2466,1974,1975,1976,1977,-3857,2471,2472,-2415,-1776,-1775,-1771,-1770,654,655,656,657,3902,3903]],"properties":{"label":"pafle"}},{"type":"Polygon","arcs":[[3904,1666,1298,1299,1300,1301]],"properties":{"label":"leikene"}},{"type":"Polygon","arcs":[[939,940,3905,936,937,938]],"properties":{"label":"triestabo"}},{"type":"Polygon","arcs":[[-937,-936,-3866,-3761,2482,-1414]],"properties":{"label":"kokesunei"}},{"type":"Polygon","arcs":[[3013,3014,-2831,3906,3907,-832]],"properties":{"label":"konone"}},{"type":"Polygon","arcs":[[3908,1818,3909,-3570,150]],"properties":{"label":"fofonesu"}},{"type":"Polygon","arcs":[[82,-3864,-3863,3910]],"properties":{"label":"osunabo"}},{"type":"Polygon","arcs":[[1663,1664,1665,-3905,1302,1303]],"properties":{"label":"kyuflosi"}},{"type":"Polygon","arcs":[[941,942,3911,934,935,-3906]],"properties":{"label":"natrise"}},{"type":"Polygon","arcs":[[79,80,81,-3911,-3862,-3861,-3860,-3090,-3089,-3088,-3087,2010,2011,2012,2013,3912,3913]],"properties":{"label":"zotakyu"}},{"type":"Polygon","arcs":[[-1810,-1809,-602,3914,-2070,3915]],"properties":{"label":"kyupi"}},{"type":"Polygon","arcs":[[-2882,-3891,3916,-3869,-3070,-2893]],"properties":{"label":"panokobupi"}},{"type":"Polygon","arcs":[[3917,2863,3918,3919,-1057,-1056]],"properties":{"label":"naanfose"}},{"type":"Polygon","arcs":[[-3915,-601,-600,3920,2884,-2071]],"properties":{"label":"lenokya"}},{"type":"Polygon","arcs":[[3921,1021,-2884,-2892,-2906,3922]],"properties":{"label":"fosizonafo"}},{"type":"Polygon","arcs":[[3923,3924,3925,3926,-1665,3927]],"properties":{"label":"netrikyuzono"}},{"type":"Polygon","arcs":[[2084,2085,-450,-449,-448,-447,-446,-445,3928,3929,3930,3931,3932,2083]],"properties":{"label":"nakyazotri"}},{"type":"Polygon","arcs":[[-3516,-3515,-3301,773,774,775]],"properties":{"label":"letrianleka"}},{"type":"Polygon","arcs":[[1018,1019,1020,-3922,3933,1017]],"properties":{"label":"gobi"}},{"type":"Polygon","arcs":[[4,-818,-2984,-3548]],"properties":{"label":"sezonabo"}},{"type":"Polygon","arcs":[[-3921,-599,-598,-597,-596,2885]],"properties":{"label":"sumape"}},{"type":"Polygon","arcs":[[3934,3935,3936,-2527,1215,1216]],"properties":{"label":"flobu"}},{"type":"Polygon","arcs":[[3937,337,2888,-2809,-2849,3938]],"properties":{"label":"keboseofle"}},{"type":"Polygon","arcs":[[2821,3939,-855,-854,-1460,3940]],"properties":{"label":"kyasi"}},{"type":"Polygon","arcs":[[-3022,3941,3942,3943,3944,6]],"properties":{"label":"floarlubifo"}},{"type":"Polygon","arcs":[[-2895,2911,2912,2913,2914,-694,-693,-692,-691,1014,1015,1016,-3934,-3923,-2905,-2909,-2908,-2907]],"properties":{"label":"anzokyubo"}},{"type":"Polygon","arcs":[[3945,75,1296,3946]],"properties":{"label":"kegoibulu"}},{"type":"Polygon","arcs":[[5,-3945,3947,815,816,817]],"properties":{"label":"isese"}},{"type":"Polygon","arcs":[[-2399,3948,3949,2153,-2480,-2479]],"properties":{"label":"ilekyufle"}},{"type":"Polygon","arcs":[[3950,3951,-975,-974,-973,-972,73,74,-3946,3952,-3926,-3925,-3924,-3928,-1664,1304,3953]],"properties":{"label":"fleno"}},{"type":"Polygon","arcs":[[2179,2180,-3780,-3779,2191,2192]],"properties":{"label":"trifle"}},{"type":"Polygon","arcs":[[3954,-3555,-3505,-2987,-3223,3955]],"properties":{"label":"kyakobi"}},{"type":"Polygon","arcs":[[3296,3297,3298,3299,63,-3244,-3226,-3225,-3224,770,771,772,3300]],"properties":{"label":"manoarlu"}},{"type":"Polygon","arcs":[[-3720,-1303,-1302,-2858,-3865,-3721]],"properties":{"label":"seflone"}},{"type":"Polygon","arcs":[[2915,313,3956,3957,-3949,-2398]],"properties":{"label":"tafobofloes"}},{"type":"Polygon","arcs":[[-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-3353,-2208,-2210,-1792,-3718,-3717,-3535,-3534,241,242]],"properties":{"label":"isunasene"}},{"type":"Polygon","arcs":[[2080,2081,3138,3958,3959,2079]],"properties":{"label":"iilezona"}},{"type":"Polygon","arcs":[[634,635,-2933,-2441,3960,-3474]],"properties":{"label":"kapepa"}},{"type":"Polygon","arcs":[[1271,1272,1273,2530,-3699,671]],"properties":{"label":"fopekyu"}},{"type":"Polygon","arcs":[[2078,-3960,3961,3962,-2947,2077]],"properties":{"label":"pepaestabu"}},{"type":"Polygon","arcs":[[78,-3914,-3913,2014,-1502]],"properties":{"label":"taflopeole"}},{"type":"Polygon","arcs":[[3963,3964,3965,3966,3967,3968,-1800,-1799,-1798,-1797,1849,-2890,1861,1862,1863,1864,3969,3970]],"properties":{"label":"kozo"}},{"type":"Polygon","arcs":[[3971,3972,3973,3974,-3936,3975]],"properties":{"label":"flenolebino"}},{"type":"Polygon","arcs":[[3976,2820,-3941,-1459,-1458,3977]],"properties":{"label":"fofopi"}},{"type":"Polygon","arcs":[[1177,1178,3978,-2663,3979,1679]],"properties":{"label":"ofle"}},{"type":"Polygon","arcs":[[2962,3980,-2769,3981,2960,2961]],"properties":{"label":"kelebi"}},{"type":"Polygon","arcs":[[116,-3596,-3595,-3494,-3199]],"properties":{"label":"bofubolulu"}},{"type":"Polygon","arcs":[[3982,-2341,1446,1447,-3713,-3530]],"properties":{"label":"nozoobima"}},{"type":"Polygon","arcs":[[-2655,2865,2866,-2855,-2854,-2857,208,-1059,-1058,-3920,3983,3984]],"properties":{"label":"zosibooar"}},{"type":"Polygon","arcs":[[-2154,-2153,-2152,-3520,3985,-2155]],"properties":{"label":"flezobu"}},{"type":"Polygon","arcs":[[-2628,3986,-3954,1305,-2643,-2642]],"properties":{"label":"kabifle"}},{"type":"Polygon","arcs":[[1391,3987,3988,1398,1399,1400]],"properties":{"label":"papepafo"}},{"type":"Polygon","arcs":[[674,-3476,-3475,-3961,-2440,-2439,-1273,-1272,672,673]],"properties":{"label":"nopaflofoke"}},{"type":"Polygon","arcs":[[-2915,-2914,3989,3990,3991,-2192,-2191,-2190,-3746,-3745,3992,3993,3994,-695]],"properties":{"label":"anfotapi"}},{"type":"Polygon","arcs":[[3995,-3522,-3589,3996,3997,3998]],"properties":{"label":"paipikase"}},{"type":"Polygon","arcs":[[2950,3999,4000,4001,54,4002,-1661,-1660,-1659,-1658,-1657,-1156,-2260]],"properties":{"label":"arkatri"}},{"type":"Polygon","arcs":[[1819,1820,1821,1822,-3575,-3574,-3573,-3572,-3571,-3910]],"properties":{"label":"arbuar"}},{"type":"Polygon","arcs":[[-2436,-2435,-354,-3789,2923,4003]],"properties":{"label":"anolu"}},{"type":"Polygon","arcs":[[-2094,-2093,-2092,4004,4005,-2095]],"properties":{"label":"bopaarzose"}},{"type":"Polygon","arcs":[[4006,4007,4008,2887,330,331,332,4009,-3939,-2848,-2851,-2850,-1575,-1574,-1573,-1572,2250,4010]],"properties":{"label":"nafugobo"}},{"type":"Polygon","arcs":[[-1454,4011,-3978,-1457,-1456,-1455]],"properties":{"label":"sueskyubu"}},{"type":"Polygon","arcs":[[1073,1613,1614,1615,4012,-3822]],"properties":{"label":"pifumakope"}},{"type":"Polygon","arcs":[[-4005,-2091,-2090,4013,4014,4015]],"properties":{"label":"trita"}},{"type":"Polygon","arcs":[[4016,4017,4018,4019,4020,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,4021,4022]],"properties":{"label":"armakasui"}},{"type":"Polygon","arcs":[[-3927,-3953,-3947,1297,-1667,-1666]],"properties":{"label":"fonaoarsu"}},{"type":"Polygon","arcs":[[4023,4024,4025,4026,4027,4028,-2004,-2003,-2002,-2001,4029,4030,-3886,-3885,-3884,4031,4032,4033,4034,4035,446,447,448,449,450,451,452,453]],"properties":{"label":"zoflesi"}},{"type":"Polygon","arcs":[[-4014,-2089,-2088,-2087,-1669,4036]],"properties":{"label":"anpe"}},{"type":"Polygon","arcs":[[-696,-3995,-3994,4037,-1008,-1007]],"properties":{"label":"flono"}},{"type":"Polygon","arcs":[[-3637,-3003,1158,1159,-2696,-3630]],"properties":{"label":"kyukogo"}},{"type":"Polygon","arcs":[[4038,4039,4040,4041,2993,2994,-2515,-2514,-2513,-2512,-878,-877,-876,-875,-874,-873,-747,4042]],"properties":{"label":"kaii"}},{"type":"Polygon","arcs":[[4043,-4015,-4037,-1668,2972,4044]],"properties":{"label":"fukagopi"}},{"type":"Polygon","arcs":[[-3554,53,-4002,-4001,-4000,2951]],"properties":{"label":"booita"}},{"type":"Polygon","arcs":[[1723,-3710,4045,974,975,976]],"properties":{"label":"kesisesipe"}},{"type":"Polygon","arcs":[[4046,280,281,282,-3263,-3256]],"properties":{"label":"essui"}},{"type":"Polygon","arcs":[[-2096,-4006,-4016,-4044,4047,1368]],"properties":{"label":"fuano"}},{"type":"Polygon","arcs":[[-3549,-2979,4048,2]],"properties":{"label":"goboes"}},{"type":"Polygon","arcs":[[1389,4049,4050,4051,4052,-1126]],"properties":{"label":"gota"}},{"type":"Polygon","arcs":[[-3895,-3894,-3902,4053,-3627,4054]],"properties":{"label":"nefleanse"}},{"type":"Polygon","arcs":[[4055,-415,-414,-2215,-2214,-2213]],"properties":{"label":"eszo"}},{"type":"Polygon","arcs":[[1367,-4048,-4045,2973,1365,1366]],"properties":{"label":"anlean"}},{"type":"Polygon","arcs":[[-951,-950,4056,2281,-3816,-3815]],"properties":{"label":"lena"}},{"type":"Polygon","arcs":[[-4049,-2978,-3586,1038,1]],"properties":{"label":"zogotana"}},{"type":"Polygon","arcs":[[4057,-962,-961,-960,-2530,4058]],"properties":{"label":"nekazoes"}},{"type":"Polygon","arcs":[[-2829,-3015,-3014,-831,-830,-829,-828,-827,-826,-825,-824,-871,-870,-869,1729,1730,-1717,-1721]],"properties":{"label":"funatalesi"}},{"type":"Polygon","arcs":[[-3823,-4013,1616,1617,1618,-3853]],"properties":{"label":"osusinear"}},{"type":"Polygon","arcs":[[275,276,4059,-3254,4060,-3347]],"properties":{"label":"lufupi"}},{"type":"Polygon","arcs":[[2817,2818,2819,-3977,-4012,-1453]],"properties":{"label":"noespaflele"}},{"type":"Polygon","arcs":[[3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,1556,1557,4061,4062,1562,1563,1564,160,161,162,4063]],"properties":{"label":"kyakofle"}},{"type":"Polygon","arcs":[[-3731,-673,-672,-671,4064,2101]],"properties":{"label":"flokamakaflo"}},{"type":"Polygon","arcs":[[-2913,-3072,-2193,-3992,-3991,-3990]],"properties":{"label":"searpe"}},{"type":"Polygon","arcs":[[-920,-3698,-2604,-587,-586,-585]],"properties":{"label":"oesan"}},{"type":"Polygon","arcs":[[-3867,2827,-857,-856,-3940,2822]],"properties":{"label":"lubifu"}},{"type":"Polygon","arcs":[[2100,-4065,-670,-669,-668,-3855]],"properties":{"label":"setane"}},{"type":"Polygon","arcs":[[-2433,-3382,987,988,989,-2434]],"properties":{"label":"keilu"}},{"type":"Polygon","arcs":[[4065,4066,4067,4068,4069,4070,2991,2992,-4042,-4041,-4040,-4039,-4043,-746,-745,-744,-743,-742,-741,-740,-739,4071]],"properties":{"label":"tapipi"}},{"type":"Polygon","arcs":[[4072,-976,-3952,-3951,-3987,-2627]],"properties":{"label":"bunolesikyu"}},{"type":"Polygon","arcs":[[-3759,-3687,3026,459,460,-3755]],"properties":{"label":"bimanaiflo"}},{"type":"Polygon","arcs":[[-3907,-2830,1732,-838,-837,4073]],"properties":{"label":"ankofotries"}},{"type":"Polygon","arcs":[[-3775,-3024,-610,-609,-1333,4074]],"properties":{"label":"siantale"}},{"type":"Polygon","arcs":[[4075,4076,4077,4078,4079,4080,1938,1939,-520,-3036,-3276,-3120,-3123,-3122,714,715,716,717,-542,-541,-540,4081]],"properties":{"label":"pafloke"}},{"type":"Polygon","arcs":[[-3790,-351,-350,-349,-348,2920]],"properties":{"label":"arkyaankabu"}},{"type":"Polygon","arcs":[[-3432,585,-2599,-2596,-2578,-3576]],"properties":{"label":"nokoboansi"}},{"type":"Polygon","arcs":[[-1513,2193,-2012,-2011,-2010,-2009,-3066,-3065,-3069,-3068,-3067,-2007,-2006,-2005,-4029,-4028,-4027,-4026,-4025,-4024,454,455,456,457,-1511,-1510,-1509,-1508]],"properties":{"label":"sikyatri"}},{"type":"Polygon","arcs":[[-3777,-3776,-4075,-1332,-1331,-3778]],"properties":{"label":"kyuzoesno"}},{"type":"Polygon","arcs":[[-949,-948,-947,2753,2280,-4057]],"properties":{"label":"pananebo"}},{"type":"Polygon","arcs":[[-967,-966,-965,-964,-963,-4058,4082,-3974,-3973,4083]],"properties":{"label":"okyugotri"}},{"type":"Polygon","arcs":[[348,-3814,4084,968,969,970]],"properties":{"label":"bolu"}},{"type":"Polygon","arcs":[[1359,-3758,2840,2841,1673,1358]],"properties":{"label":"nanape"}},{"type":"Polygon","arcs":[[4085,4086,4087,4088,4089,4090,4091,-3190,1654,1655,778,779,780,781,782,783,784,4092]],"properties":{"label":"tasuar"}},{"type":"Polygon","arcs":[[-718,-3368,-3367,-2897,-544,-543]],"properties":{"label":"anesne"}},{"type":"Polygon","arcs":[[2698,2695,1160,1647,-1090,4093]],"properties":{"label":"anbunoan"}},{"type":"Polygon","arcs":[[41,-3374,1700,-3215,-2771,-2770]],"properties":{"label":"gokoartrine"}},{"type":"Polygon","arcs":[[-3191,-4092,4094,4095,4096,4097,-3880,-3879,-3878,-1157,1656,1657,4098,4099,4100,4101]],"properties":{"label":"esflenena"}},{"type":"Polygon","arcs":[[-528,4102,4103,-3107,-3111,-3110,-3109,1937,-4081,-4080,-4079,-4078,-4077,-4076,-4082,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529]],"properties":{"label":"peletakokyu"}},{"type":"Polygon","arcs":[[13,4104,4105,-2836]],"properties":{"label":"lenekefuse"}},{"type":"Polygon","arcs":[[4106,-2824,-2823,-2822,-2821,-2820]],"properties":{"label":"noflo"}},{"type":"Polygon","arcs":[[4107,549,550,4108,4109,4110]],"properties":{"label":"natasefono"}},{"type":"Polygon","arcs":[[4111,4112,4113,4114,-3988,1392]],"properties":{"label":"ilusu"}},{"type":"Polygon","arcs":[[-1045,-1044,1519,4115,-4111,-4110,4116,555,2652,2653,2654,2655]],"properties":{"label":"ozono"}},{"type":"Polygon","arcs":[[4117,4118,4119,4120,4121,-2331,-2537,-3631,-2981,-2980,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,-2968,-2967,-2353,-2333]],"properties":{"label":"kefupaankya"}},{"type":"Polygon","arcs":[[2673,2674,4122,-1356,-1355,4123]],"properties":{"label":"fupapi"}},{"type":"Polygon","arcs":[[2086,4124,-4072,-738,-737,-1670]],"properties":{"label":"bitriesse"}},{"type":"Polygon","arcs":[[737,738,4125,4126,4127,4128,-3771,-3770,4129,2844,2845,-1206,-1205,-1204]],"properties":{"label":"luzo"}},{"type":"Polygon","arcs":[[-4062,1558,1559,1560,1561,-4063]],"properties":{"label":"bisupe"}},{"type":"Polygon","arcs":[[1459,-853,2788,2789,2790,2791,2792,965,966,967,-4085,-3813,-3805,-3804,-3803,1456,1457,1458]],"properties":{"label":"fokyu"}},{"type":"Polygon","arcs":[[-2034,2672,-4124,-1354,-1353,-1352]],"properties":{"label":"lepi"}},{"type":"Polygon","arcs":[[2995,4130,4131,-4066,-4125,2087]],"properties":{"label":"pitafle"}},{"type":"Polygon","arcs":[[3011,-3812,125,-1083,-3836]],"properties":{"label":"kyupeessu"}},{"type":"Polygon","arcs":[[-1166,4132,-4093,785,786,787]],"properties":{"label":"kema"}},{"type":"Polygon","arcs":[[387,-3519,-2636,-3425,196]],"properties":{"label":"bifleananne"}},{"type":"Polygon","arcs":[[2864,-1046,-2656,-3985,-3984,-3919]],"properties":{"label":"manopi"}},{"type":"Polygon","arcs":[[4133,-4070,-4069,-4068,-4067,-4132]],"properties":{"label":"anlupale"}},{"type":"Polygon","arcs":[[4134,4135,4136,-4086,-4133,-1165]],"properties":{"label":"piflo"}},{"type":"Polygon","arcs":[[-3648,2023,2024,-2337,-2603,-3697]],"properties":{"label":"koosu"}},{"type":"Polygon","arcs":[[2989,2990,-4071,-4134,-4131,2996]],"properties":{"label":"pakalu"}},{"type":"Polygon","arcs":[[-1160,-3881,-4098,-4097,-4096,-4095,-4091,-4090,-4089,-4088,-4087,-4137,-4136,-4135,-1164,-1163,-1162,-1161]],"properties":{"label":"zoboar"}},{"type":"Polygon","arcs":[[-3527,-3526,-3525,-3524,-484,-483,-482,-481,3041,3042,4137,4138,4139,-1023,-1022,-1021]],"properties":{"label":"oketai"}},{"type":"Polygon","arcs":[[739,740,-1193,4140,4141,-4126]],"properties":{"label":"okabiipa"}},{"type":"Polygon","arcs":[[-3639,-3638,-3611,-3610,-2220,-3640]],"properties":{"label":"goisikyu"}},{"type":"Polygon","arcs":[[4142,4143,3103,4144,4145,4146]],"properties":{"label":"sibokyunepe"}},{"type":"Polygon","arcs":[[3017,531,532,4147,4148,4149]],"properties":{"label":"letasu"}},{"type":"Polygon","arcs":[[-3967,4150,4151,-1801,-3969,-3968]],"properties":{"label":"kyafuta"}},{"type":"Polygon","arcs":[[-2376,-1873,-2825,-4107,-2819,4152]],"properties":{"label":"obonosi"}},{"type":"Polygon","arcs":[[-2962,2999,3000,3001,1381,1382,1383,1384,1385,1386,1387,1388,-1127,-4053,4153,4154,4155,4156,4157,4158]],"properties":{"label":"siobibi"}},{"type":"Polygon","arcs":[[-526,-525,-524,4159,-4103,-527]],"properties":{"label":"kyazo"}},{"type":"Polygon","arcs":[[9,3015,3016,-4150,-4149,-4148,533,534,535,3018,3019,4160,4161,8]],"properties":{"label":"flopefuse"}},{"type":"Polygon","arcs":[[1075,1076,4162,1740,-1614,1074]],"properties":{"label":"gobuboeso"}},{"type":"Polygon","arcs":[[-4160,-523,-522,1935,-3108,-4104]],"properties":{"label":"penekyasu"}},{"type":"Polygon","arcs":[[3086,3087,4163,-3841,-3082,2009]],"properties":{"label":"flono"}},{"type":"Polygon","arcs":[[1840,1841,1842,4164,-3670,-1233]],"properties":{"label":"triflofotrine"}},{"type":"Polygon","arcs":[[3088,3089,3090,-3566,-3842,-4164]],"properties":{"label":"kakyasibu"}},{"type":"Polygon","arcs":[[-2127,-2126,4165,-2444,28]],"properties":{"label":"kyupeo"}},{"type":"Polygon","arcs":[[1798,-3277,-3261,-3079,4166,1797]],"properties":{"label":"flobo"}},{"type":"Polygon","arcs":[[-4139,-4138,3043,-1025,-1024,-4140]],"properties":{"label":"espepapi"}},{"type":"Polygon","arcs":[[1676,1677,4167,-637,-636,1675]],"properties":{"label":"luflefo"}},{"type":"Polygon","arcs":[[-2902,-2901,-3366,-3365,-3364,-3363,4168,4169,4170,-1540,-1539,-1538,4171,4172,4173,-1530,3022,-2903]],"properties":{"label":"fuanta"}},{"type":"Polygon","arcs":[[-2438,-2437,-4004,2924,-1283,-1282]],"properties":{"label":"kyase"}},{"type":"Polygon","arcs":[[-2125,-2124,-2287,4174,-2445,-4166]],"properties":{"label":"noes"}},{"type":"Polygon","arcs":[[1796,-4167,-3081,1805,1806,1807]],"properties":{"label":"kaflotrisitri"}},{"type":"Polygon","arcs":[[-808,-807,548,-4108,-4116,1520]],"properties":{"label":"nazoko"}},{"type":"Polygon","arcs":[[-969,-968,-4084,-3972,4175,4176]],"properties":{"label":"kepebupisi"}},{"type":"Polygon","arcs":[[2254,4177,-4011,2251,2252,2253]],"properties":{"label":"nobues"}},{"type":"Polygon","arcs":[[4178,-1394,-1393,-1392,-1802,-4152]],"properties":{"label":"fues"}},{"type":"Polygon","arcs":[[227,228,229,230,1071,-3821,-3825,-3852,4179,226]],"properties":{"label":"flelearbo"}},{"type":"Polygon","arcs":[[1097,-3599,-3598,-3597,120,121,-3811,-2782,1096]],"properties":{"label":"nonao"}},{"type":"Polygon","arcs":[[91,4180,4181,-1922]],"properties":{"label":"fleotri"}},{"type":"Polygon","arcs":[[-1411,3008,-3837,-1080,-1413,-1412]],"properties":{"label":"kyupamanolu"}},{"type":"Polygon","arcs":[[-4162,-4161,3020,3021,7]],"properties":{"label":"fopa"}},{"type":"Polygon","arcs":[[1077,-3411,-3415,-3850,1739,-4163]],"properties":{"label":"trisees"}},{"type":"Polygon","arcs":[[-1053,2861,2862,-3918,-1055,-1054]],"properties":{"label":"pitabuta"}},{"type":"Polygon","arcs":[[3072,3073,-2517,4182,4183,3077]],"properties":{"label":"zobi"}},{"type":"Polygon","arcs":[[-833,-3908,-4074,-836,-835,-834]],"properties":{"label":"kobikoi"}},{"type":"Polygon","arcs":[[43,4184,-3372]],"properties":{"label":"pian"}},{"type":"Polygon","arcs":[[49,1152,-3636,-2657]],"properties":{"label":"masufopile"}},{"type":"Polygon","arcs":[[-784,-783,2417,4185,4186,-2405]],"properties":{"label":"lesi"}},{"type":"Polygon","arcs":[[-3942,-3021,-3020,-3019,536,537,4187,-3506,4188,-3943]],"properties":{"label":"zokyakya"}},{"type":"Polygon","arcs":[[-983,-2629,2641,4189,-3828,-3827]],"properties":{"label":"kebo"}},{"type":"Polygon","arcs":[[4190,-3676,-3620,-2760,1189,1190]],"properties":{"label":"nasema"}},{"type":"Polygon","arcs":[[1678,-3980,-2666,-2462,-638,-4168]],"properties":{"label":"buse"}},{"type":"Polygon","arcs":[[-1853,-1852,-1851,-1850,-1808,-1807,4191,4192,170,171,172,-3683,-3682,-3681,3135]],"properties":{"label":"fuzo"}},{"type":"Polygon","arcs":[[-3963,4193,4194,4195,3140,3141,-3078,-3077,-3076,-3075,2092,2093,-2950,-2948]],"properties":{"label":"neka"}},{"type":"Polygon","arcs":[[-3409,-2377,-4153,-2818,-1452,-1451]],"properties":{"label":"ipe"}},{"type":"Polygon","arcs":[[3148,3149,3150,-1924,2194,2195,428,429,430,4196]],"properties":{"label":"bukyufuikya"}},{"type":"Polygon","arcs":[[586,587,-3617,1321,-2597,2598]],"properties":{"label":"mano"}},{"type":"Polygon","arcs":[[20,-3138,1347,4197,-512,-511]],"properties":{"label":"ketakakakyu"}},{"type":"Polygon","arcs":[[-3859,-3858,1996,1997,4198,-3093]],"properties":{"label":"esseflo"}},{"type":"Polygon","arcs":[[1847,1848,320,321,322,323,-1397,-1396,-1395,-4179,-4151,-3966,-3965,-3964,-3971,-3970,1865,1866]],"properties":{"label":"makatripi"}},{"type":"Polygon","arcs":[[267,3314,1817,-3909,151]],"properties":{"label":"penabumafle"}},{"type":"Polygon","arcs":[[-3403,4199,4200,4201,4202,4203,4204,-3468,-237,-236,-235,-234,-233,-232,-231,-230,-1583,-1719,3049,3050,3051,3052,-1730,-868,-867,-866,-3569,-3568]],"properties":{"label":"zopa"}},{"type":"Polygon","arcs":[[-3348,-4061,-3259,-3264,-1821,-3056]],"properties":{"label":"imasi"}},{"type":"Polygon","arcs":[[2443,2444,2445,4205,4206,27]],"properties":{"label":"lufleessu"}},{"type":"Polygon","arcs":[[4207,4208,-514,-513,-4198,1348,1349,1350,1351,1352,4209,4210,4211,4212]],"properties":{"label":"arneananzo"}},{"type":"Polygon","arcs":[[4213,4214,1111,1112,4215,1951]],"properties":{"label":"ofupikya"}},{"type":"Polygon","arcs":[[1756,1757,1758,1759,1760,4216,4217,4218,3248,3249]],"properties":{"label":"zoesfopape"}},{"type":"Polygon","arcs":[[-4207,4219,2451,26]],"properties":{"label":"mabiarfleta"}},{"type":"Polygon","arcs":[[3151,3152,3153,3154,4220,3158]],"properties":{"label":"kokees"}},{"type":"Polygon","arcs":[[-1210,4221,2612,-3660,-916,-915]],"properties":{"label":"kyui"}},{"type":"Polygon","arcs":[[3146,3147,-4197,431,432,433]],"properties":{"label":"kyaarzopi"}},{"type":"Polygon","arcs":[[-4186,2418,2419,4222,4223,4224]],"properties":{"label":"bopisino"}},{"type":"Polygon","arcs":[[3157,-4221,3155,3156,522,523]],"properties":{"label":"papi"}},{"type":"Polygon","arcs":[[-4190,2642,1306,1307,4225,-3829]],"properties":{"label":"nebita"}},{"type":"Polygon","arcs":[[745,746,747,748,2815,-3680,-3674,-3673,-3677,-4191,1191,1192,741,742,743,744]],"properties":{"label":"ipena"}},{"type":"Polygon","arcs":[[18,19,510,511,512,513,514,515,516,517,3171,-3156,-3155,-3154,-3153,-3152,4226,4227]],"properties":{"label":"koanke"}},{"type":"Polygon","arcs":[[4228,4229,-2997,-2996,2088,2089]],"properties":{"label":"trino"}},{"type":"Polygon","arcs":[[4230,-1364,-733,-732,-731,-3119]],"properties":{"label":"paseo"}},{"type":"Polygon","arcs":[[2958,4231,-2078,-2077,1373,4232]],"properties":{"label":"neesfle"}},{"type":"Polygon","arcs":[[855,-3734,-3765,-3809,-3810,-3490,851,852,853,854]],"properties":{"label":"kyule"}},{"type":"Polygon","arcs":[[-4209,-4208,-4213,4233,-3369,-515]],"properties":{"label":"legolukene"}},{"type":"Polygon","arcs":[[-1446,-3471,-3587,-2374,-3408,-1447]],"properties":{"label":"pefo"}},{"type":"Polygon","arcs":[[-3982,-2768,-2080,-2079,-4232,2959]],"properties":{"label":"gonofokyuse"}},{"type":"Polygon","arcs":[[1265,4234,4235,-1958,2061,2062]],"properties":{"label":"eszoesessu"}},{"type":"Polygon","arcs":[[-2838,4236,4237,4238,4239,-4105,14,15,4240,4241,4242,4243,4244,526,527,528,529,-1933,-1932,-1931,-1906]],"properties":{"label":"kekyamata"}},{"type":"Polygon","arcs":[[-578,-577,-576,-575,-574,-573,1750,4245,4246,4247,4248,-3280,-380,-379]],"properties":{"label":"kyabiarke"}},{"type":"Polygon","arcs":[[261,4249,4250,-4214,1952,1120]],"properties":{"label":"espe"}},{"type":"Polygon","arcs":[[55,-1663,-1662,-4003]],"properties":{"label":"ozoanfle"}},{"type":"Polygon","arcs":[[-3176,106,-3875,-3874,-3873,-3768]],"properties":{"label":"kyubosipi"}},{"type":"Polygon","arcs":[[-3704,-3703,-3702,4251,-4235,1266]],"properties":{"label":"buanpianbu"}},{"type":"Polygon","arcs":[[-4234,-4212,4252,-683,-682,-3370]],"properties":{"label":"suopa"}},{"type":"Polygon","arcs":[[1333,2609,2610,2611,-4222,-1209]],"properties":{"label":"arkekya"}},{"type":"Polygon","arcs":[[-4206,2446,2447,1239,1240,1241,2448,2449,2450,-4220]],"properties":{"label":"ansezosile"}},{"type":"Polygon","arcs":[[-4252,-3701,-3700,-335,-1959,-4236]],"properties":{"label":"lufo"}},{"type":"Polygon","arcs":[[56,57,1648,1649,1650,-3189,-4102,-4101,-4100,-4099,1658,1659,1660,1661,1662]],"properties":{"label":"kyatrikya"}},{"type":"Polygon","arcs":[[-684,-4253,-4211,-4210,1353,1354,1355,1356,-3030,-3029,-2759,-3115,-3545,-3544,-3546,-687,-686,-685]],"properties":{"label":"nale"}},{"type":"Polygon","arcs":[[2964,4253,-2735,-2766,-3981,2963]],"properties":{"label":"flekosearlu"}},{"type":"Polygon","arcs":[[-1998,-1997,-1996,-1995,85,86,87,-3192,-3179,-3182,-3147,434,435,-3888,4254,4255,-1999]],"properties":{"label":"flebopa"}},{"type":"Polygon","arcs":[[-3760,-3712,175]],"properties":{"label":"onapapa"}},{"type":"Polygon","arcs":[[-4106,-4240,-4239,-4238,-4237,-2837]],"properties":{"label":"ansine"}},{"type":"Polygon","arcs":[[-2516,-2995,-2994,-2993,-2992,-2991,-2990,-4230,-4229,2090,2091,3074,3075,3076,-4184,-4183]],"properties":{"label":"ibiibikya"}},{"type":"Polygon","arcs":[[-470,4256,-1129,4257,-3101,-3100]],"properties":{"label":"pisepi"}},{"type":"Polygon","arcs":[[4258,-1366,-1365,-4231,-3118,-3358]],"properties":{"label":"pezoma"}},{"type":"Polygon","arcs":[[2953,2954,-452,-2732,-4254,2965]],"properties":{"label":"nonapi"}},{"type":"Polygon","arcs":[[23,-1491,4259,-2029,-2028,-2027]],"properties":{"label":"kepilufofu"}},{"type":"Polygon","arcs":[[16,17,-4228,-4227,-3159,-3158,524,525,-4245,-4244,-4243,-4242,-4241]],"properties":{"label":"takyu"}},{"type":"Polygon","arcs":[[-3795,4260,-1867,2147,2148,-3868]],"properties":{"label":"artribiboes"}},{"type":"Polygon","arcs":[[-2835,-2834,2843,-4130,-3774,4261,4262,4263,-1880,-2815]],"properties":{"label":"luneka"}},{"type":"Polygon","arcs":[[4264,-3211,-3210,978,4265,4266]],"properties":{"label":"bole"}},{"type":"Polygon","arcs":[[263,4267,4268,4269,-4250,262]],"properties":{"label":"goleo"}},{"type":"Polygon","arcs":[[-2683,-2682,-2681,-2680,3203,3204,-2030,-4260,-1490,-1247,-1246,-1245,1497,1498,1499,1500,-494,-493,-492,4270,4271,-2684]],"properties":{"label":"flego"}},{"type":"Polygon","arcs":[[1950,-4216,1113,1114,243,-3872]],"properties":{"label":"kalupa"}},{"type":"Polygon","arcs":[[-404,-3169,100,4272,-562,-561]],"properties":{"label":"iko"}},{"type":"Polygon","arcs":[[688,689,690,-3206,702,4273]],"properties":{"label":"kobo"}},{"type":"Polygon","arcs":[[35,36,-3489,-3503,-3452,-3451,-3450,1709,1710,1711,1712,1713,1714,1715,34]],"properties":{"label":"fogobi"}},{"type":"Polygon","arcs":[[-4175,-2286,1238,-2448,-2447,-2446]],"properties":{"label":"kolele"}},{"type":"Polygon","arcs":[[686,687,-4274,703,4274,-1545]],"properties":{"label":"seonese"}},{"type":"Polygon","arcs":[[-3832,-3831,4275,-3835,-3834,-3833]],"properties":{"label":"obo"}},{"type":"Polygon","arcs":[[-2685,-4272,4276,-1362,-2687,-2686]],"properties":{"label":"bisefo"}},{"type":"Polygon","arcs":[[-2329,-1547,-1546,-4275,704,705,706,707,708,3206]],"properties":{"label":"zokyakofono"}},{"type":"Polygon","arcs":[[1179,1180,1680,2745,-2664,-3979]],"properties":{"label":"taisiflebi"}},{"type":"Polygon","arcs":[[-466,-465,-464,-463,-1391,-1390,-1125,-1124,-4257,-469,-468,-467]],"properties":{"label":"onobipego"}},{"type":"Polygon","arcs":[[-3252,-2348,-1367,-4259,-3357,-3371]],"properties":{"label":"esarkema"}},{"type":"Polygon","arcs":[[334,335,336,-3938,-4010,333]],"properties":{"label":"antrikyu"}},{"type":"Polygon","arcs":[[4277,4278,4279,4280,945,946]],"properties":{"label":"sipele"}},{"type":"Polygon","arcs":[[-3625,924,925,926,-656,2599]],"properties":{"label":"nonanoflopi"}},{"type":"Polygon","arcs":[[2873,-3892,-3893,2876,2877,2878]],"properties":{"label":"arke"}},{"type":"Polygon","arcs":[[-1563,-1562,-2649,159,-1565,-1564]],"properties":{"label":"kyapa"}},{"type":"Polygon","arcs":[[-1631,-1630,-1729,-3685,3212,4281]],"properties":{"label":"kyapa"}},{"type":"Polygon","arcs":[[-2000,-4256,-4255,-3887,-4031,-4030]],"properties":{"label":"sunataflota"}},{"type":"Polygon","arcs":[[3194,3195,3196,3197,1109,1110,-4215,-4251,-4270,-4269,-4268,264,265,266,111,112,113,114,115,3198,3199,3200,3201]],"properties":{"label":"flekanogole"}},{"type":"Polygon","arcs":[[-4273,101,4282,4283,-564,-563]],"properties":{"label":"pafukeflotri"}},{"type":"Polygon","arcs":[[-3944,-4189,-3508,813,814,-3948]],"properties":{"label":"zofusibole"}},{"type":"Polygon","arcs":[[277,278,279,-4047,-3255,-4060]],"properties":{"label":"suanpe"}},{"type":"Polygon","arcs":[[4284,-1632,-4282,3213,-2421,-2420]],"properties":{"label":"nokatrima"}},{"type":"Polygon","arcs":[[-4271,-491,-490,-489,-1363,-4277]],"properties":{"label":"zoi"}},{"type":"Polygon","arcs":[[2925,-625,-624,2926,2927,2928]],"properties":{"label":"bian"}},{"type":"Polygon","arcs":[[4285,-409,-1830,-1829,-1828,4286]],"properties":{"label":"bonama"}},{"type":"Polygon","arcs":[[-782,4287,-1633,-4285,-2419,-2418]],"properties":{"label":"kyupipekeo"}},{"type":"Polygon","arcs":[[3223,4288,-3956,-3222,768,769]],"properties":{"label":"kyaflekyatakyu"}},{"type":"Polygon","arcs":[[-1812,-1811,-3916,-2069,-2020,-2019]],"properties":{"label":"lukapenata"}},{"type":"Polygon","arcs":[[-3362,-1542,-1541,-4171,-4170,-4169]],"properties":{"label":"butrifloeske"}},{"type":"Polygon","arcs":[[-4217,1761,-3060,-266,4289,-4218]],"properties":{"label":"eskekaluko"}},{"type":"Polygon","arcs":[[3225,3226,-3556,-3955,-4289,3224]],"properties":{"label":"esbisu"}},{"type":"Polygon","arcs":[[-2232,-3896,-4055,-3626,-318,-3334]],"properties":{"label":"bukyapi"}},{"type":"Polygon","arcs":[[4290,4291,4292,4293,-1279,4294]],"properties":{"label":"izo"}},{"type":"Polygon","arcs":[[-4052,-4051,-4050,1390,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-2955,-2954,4295,4296,-4155,-4154]],"properties":{"label":"kyubutrinobo"}},{"type":"Polygon","arcs":[[-1970,-1969,-1987,-3424,-3423,4297]],"properties":{"label":"gobiole"}},{"type":"Polygon","arcs":[[2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,-1361,-1360,-1359,-1358,-1357,-4123]],"properties":{"label":"triluanflelu"}},{"type":"Polygon","arcs":[[-4281,4298,929,930,931,932,933,-3912,943,944]],"properties":{"label":"pigo"}},{"type":"Polygon","arcs":[[4299,4300,4301,4302,-4279,4303]],"properties":{"label":"takefo"}},{"type":"Polygon","arcs":[[326,-2257,-2256,-2255,4304,325]],"properties":{"label":"ile"}},{"type":"Polygon","arcs":[[-3931,4305,-3073,-3142,-3141,-3140,-3139,2082,-3933,-3932]],"properties":{"label":"sego"}},{"type":"Polygon","arcs":[[-4036,4306,-3889,443,444,445]],"properties":{"label":"kagokyatri"}},{"type":"Polygon","arcs":[[4307,4308,4309,-4283,102,103,104,-3175,-3174,-3882,-3386]],"properties":{"label":"lukefupa"}},{"type":"Polygon","arcs":[[3263,-3258,4310,-1824,-1823,-1822]],"properties":{"label":"kabi"}},{"type":"Polygon","arcs":[[362,-3694,4311,-3528,-3714,361]],"properties":{"label":"zonepakebu"}},{"type":"Polygon","arcs":[[2886,-4009,-4008,-4007,-4178,2255]],"properties":{"label":"foanbope"}},{"type":"Polygon","arcs":[[-4034,-4033,-4032,-3883,-4307,-4035]],"properties":{"label":"fupikyanobi"}},{"type":"Polygon","arcs":[[3303,-2878,-3383,1438,961,962]],"properties":{"label":"ilebi"}},{"type":"Polygon","arcs":[[2696,2697,-4094,-1089,1148,1149]],"properties":{"label":"mamakyasisu"}},{"type":"Polygon","arcs":[[-3257,3262,283,-1826,-1825,-4311]],"properties":{"label":"fone"}},{"type":"Polygon","arcs":[[3244,3245,3246,3247,-4219,-4290,-265,-264,-263,-262,-261,-260,-259,3250]],"properties":{"label":"luarkyunoar"}},{"type":"Polygon","arcs":[[422,3268,3269,4312,4313,-3265]],"properties":{"label":"gobufo"}},{"type":"Polygon","arcs":[[-3084,-3843,3096,2003,2004,2005]],"properties":{"label":"noanboo"}},{"type":"Polygon","arcs":[[3270,98,401,402,403,404,405,406,407,408,409,410,411,-3038,-3267,-3266,-4314,-4313]],"properties":{"label":"fokase"}},{"type":"Polygon","arcs":[[-3930,4314,-2506,-2505,-3074,-4306]],"properties":{"label":"ika"}},{"type":"Polygon","arcs":[[4315,4316,-4295,-1278,-1277,4317]],"properties":{"label":"iananno"}},{"type":"Polygon","arcs":[[666,667,-1271,-3375,4318,4319]],"properties":{"label":"bui"}},{"type":"Polygon","arcs":[[-444,-443,4320,-2507,-4315,-3929]],"properties":{"label":"kebukees"}},{"type":"Polygon","arcs":[[-1972,-1971,-4298,-3422,-3291,-3336]],"properties":{"label":"gopi"}},{"type":"Polygon","arcs":[[4321,319,-1849,-1848,-4261,-3794]],"properties":{"label":"lukosikyuke"}},{"type":"Polygon","arcs":[[-4246,1751,4322,4323,4324,-4247]],"properties":{"label":"sezobo"}},{"type":"Polygon","arcs":[[-2539,-2538,302,303,304,305,306,307,308,309,310,311,927,928,-4299,-4280,-4303,-4302,-4301,-4300,-4304,-4278,947,4325]],"properties":{"label":"bikyabo"}},{"type":"Polygon","arcs":[[-4173,-4172,-1537,-2222,-1531,-4174]],"properties":{"label":"manaiko"}},{"type":"Polygon","arcs":[[-442,-441,-884,-3600,-2508,-4321]],"properties":{"label":"mana"}},{"type":"Polygon","arcs":[[-3851,-3412,3058,1734,1735,1736]],"properties":{"label":"paflozo"}},{"type":"Polygon","arcs":[[4326,4327,-3398,-1500,-1499,4328]],"properties":{"label":"flenaikyu"}},{"type":"Polygon","arcs":[[1565,3231,-4064,163]],"properties":{"label":"sefugo"}},{"type":"Polygon","arcs":[[-774,-773,4329,1626,-2918,3277]],"properties":{"label":"luma"}},{"type":"Polygon","arcs":[[538,539,-2945,1928,-3507,-4188]],"properties":{"label":"oflo"}},{"type":"Polygon","arcs":[[2387,-3401,4330,145]],"properties":{"label":"essina"}},{"type":"Polygon","arcs":[[1845,2326,4331,-4327,-4329,-1498,-1244,-1243,-1242,-1241]],"properties":{"label":"zofueses"}},{"type":"Polygon","arcs":[[-4297,-4296,-2966,-2965,4332,-4156]],"properties":{"label":"kefu"}},{"type":"Polygon","arcs":[[-772,-771,-770,1624,1625,-4330]],"properties":{"label":"flolukole"}},{"type":"Polygon","arcs":[[4333,4334,4335,4336,4337,4338,-2395,-2394,-2406,-4187,-4225,-4224,-4223,2420,2421,2422,2423,2424,2425,2426,2427,2428,4339,4340,4341,4342]],"properties":{"label":"tafoneka"}},{"type":"Polygon","arcs":[[-4157,-4333,-2964,-2963,-4159,-4158]],"properties":{"label":"flosian"}},{"type":"Polygon","arcs":[[2510,-881,-880,-879,2511,4343]],"properties":{"label":"ansuzoiko"}},{"type":"Polygon","arcs":[[-245,-244,-243,4344,-4200,-3402]],"properties":{"label":"nakeieske"}},{"type":"Polygon","arcs":[[-4181,92,4345,4346,4347]],"properties":{"label":"zoflei"}},{"type":"Polygon","arcs":[[4348,2509,-4344,2512,2513,4349]],"properties":{"label":"binopeisi"}},{"type":"Polygon","arcs":[[1529,1530,1531,4350,4351,1528]],"properties":{"label":"neke"}},{"type":"Polygon","arcs":[[2438,4352,-4318,-1276,-1275,-1274]],"properties":{"label":"kako"}},{"type":"Polygon","arcs":[[-1650,-1649,58,4353,-1652,-1651]],"properties":{"label":"tanearpe"}},{"type":"Polygon","arcs":[[-1171,653,1769,1770,1771,1772]],"properties":{"label":"lugo"}},{"type":"Polygon","arcs":[[316,317,318,-4322,-3793,2872]],"properties":{"label":"kyukepi"}},{"type":"Polygon","arcs":[[324,-4305,-2254,4354,1395,1396]],"properties":{"label":"trian"}},{"type":"Polygon","arcs":[[-1442,1622,1623,-1474,-1444,-1443]],"properties":{"label":"pafukyanata"}},{"type":"Polygon","arcs":[[2327,2323,2324,-3397,-4328,-4332]],"properties":{"label":"piko"}},{"type":"Polygon","arcs":[[1527,-4352,4355,1524,1525,1526]],"properties":{"label":"fuarno"}},{"type":"Polygon","arcs":[[-4038,-3993,-3744,-3743,-1010,-1009]],"properties":{"label":"fokogole"}},{"type":"Polygon","arcs":[[-3400,2384,4356,144,-4331]],"properties":{"label":"kasiflosukya"}},{"type":"Polygon","arcs":[[-3707,-3706,1725,1726,1727,1728,-1629,-1628,-1627,-1626,-2803,-2802,-2801,-767,-766,1065,1066,1067,1068,1069,4357,-3708]],"properties":{"label":"flokelufoke"}},{"type":"Polygon","arcs":[[-3750,-2928,-2935,2202,2203,3184]],"properties":{"label":"pikyubu"}},{"type":"Polygon","arcs":[[-1236,-1235,3304,-2328,-2327,1846]],"properties":{"label":"esanbi"}},{"type":"Polygon","arcs":[[-3269,423,3305,3306,3307,3308,3309,97,-3271,-3270]],"properties":{"label":"fufletrineflo"}},{"type":"Polygon","arcs":[[761,569,570,571,572,4358]],"properties":{"label":"lekyuneta"}},{"type":"Polygon","arcs":[[-1976,-1975,-1974,3310,-2042,-1977]],"properties":{"label":"arpipatrisu"}},{"type":"Polygon","arcs":[[2506,2507,2508,-4349,4359,2505]],"properties":{"label":"arkyalu"}},{"type":"Polygon","arcs":[[2440,2441,4360,-4316,-4353,2439]],"properties":{"label":"fupabine"}},{"type":"Polygon","arcs":[[4361,4362,-906,-905,-3312,1534]],"properties":{"label":"nana"}},{"type":"Polygon","arcs":[[-4355,-2253,4363,-4112,1393,1394]],"properties":{"label":"sisuse"}},{"type":"Polygon","arcs":[[-3458,-3283,3315,-2386,-2385,-2384]],"properties":{"label":"kyasi"}},{"type":"Polygon","arcs":[[1537,4364,4365,-4362,1535,1536]],"properties":{"label":"anfokebu"}},{"type":"Polygon","arcs":[[4366,-4338,-4337,-4336,-4335,4367]],"properties":{"label":"kyuketribukya"}},{"type":"Polygon","arcs":[[3312,3313,-3219,4368,-4365,1538]],"properties":{"label":"kese"}},{"type":"Polygon","arcs":[[-2123,3322,3323,1237,2285,2286]],"properties":{"label":"fleflena"}},{"type":"Polygon","arcs":[[-4369,-3218,4369,-907,-4363,-4366]],"properties":{"label":"anlusiar"}},{"type":"Polygon","arcs":[[-3094,-4199,1998,1999,2000,-3137]],"properties":{"label":"talupibona"}},{"type":"Polygon","arcs":[[-2461,4370,-4287,-1827,-2177,873]],"properties":{"label":"flenearzo"}},{"type":"Polygon","arcs":[[995,996,997,998,999,1000,1953,1954,1955,4371,-4368,-4334,-4343,-4342,-4341,-4340,2429,2430,2431,2432,-3658,-3657,-3659,992,993,994]],"properties":{"label":"pilutri"}},{"type":"Polygon","arcs":[[4372,4373,94,4374,-3307,4375]],"properties":{"label":"kafono"}},{"type":"Polygon","arcs":[[2504,-4360,-4350,2514,2515,2516]],"properties":{"label":"foonetripe"}},{"type":"Polygon","arcs":[[-1526,-1525,-1524,-1523,-1522,-902,-3443,-3442,-3441,-3440,-3439,1142,1143,1144,1145,1146,1147,-554,-553,3229,4376,4377]],"properties":{"label":"pifleanbi"}},{"type":"Polygon","arcs":[[2442,639,4378,-4291,-4317,-4361]],"properties":{"label":"oflo"}},{"type":"Polygon","arcs":[[-2121,-1612,-2237,3324,-3323,-2122]],"properties":{"label":"lefosego"}},{"type":"Polygon","arcs":[[93,-4374,-4373,-4376,-3306,424,425,426,427,-2196,-2195,-1923,-4182,-4348,-4347,-4346]],"properties":{"label":"buno"}},{"type":"Polygon","arcs":[[-2044,3301,-3294,-1252,-2046,-2045]],"properties":{"label":"napiflonono"}},{"type":"Polygon","arcs":[[314,315,-2873,-2872,4379,-3957]],"properties":{"label":"kebukekya"}},{"type":"Polygon","arcs":[[1571,-3396,-3395,-3394,-3393,-3392,-3238,-3237,-3236,-3235,-3234,-3287,-3286,-3285,1567,1568,1569,1570]],"properties":{"label":"ipika"}},{"type":"Polygon","arcs":[[-2931,-2707,-410,-4286,-4371,-2460]],"properties":{"label":"sisipe"}},{"type":"Polygon","arcs":[[2689,2690,833,-3767,-3736,4380]],"properties":{"label":"palesinoke"}},{"type":"Polygon","arcs":[[-4129,-4128,-4127,-4142,-4141,-1192,-1191,-1190,-1189,-1188,-1187,-1186,4381,4382,-3498,-3772]],"properties":{"label":"suarkya"}},{"type":"Polygon","arcs":[[-4354,59,-3514,-3513,-3512,-1653]],"properties":{"label":"anlenotri"}},{"type":"Polygon","arcs":[[4383,4384,-1379,4385,4386,4387]],"properties":{"label":"nolekyakobu"}},{"type":"Polygon","arcs":[[841,-3738,2694,-276,-275,-274]],"properties":{"label":"flokebu"}},{"type":"Polygon","arcs":[[-979,-978,-977,-4073,-2626,-980]],"properties":{"label":"bone"}},{"type":"Polygon","arcs":[[-1378,-3481,-3480,-3479,-3478,-3477,615,4388,-4387,-4386]],"properties":{"label":"iozoar"}},{"type":"Polygon","arcs":[[-1384,-1383,-1382,-1381,-1380,-4385,-4384,-4388,-4389,616,617,618,619,620,621,4389,4390,4391]],"properties":{"label":"onopa"}},{"type":"Polygon","arcs":[[1551,1552,1553,3316,-3391,1578]],"properties":{"label":"fui"}},{"type":"Polygon","arcs":[[-4262,-3773,-3502,-3501,-3500,-3499,-4383,-4382,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1881,-4264,-4263]],"properties":{"label":"luankomama"}},{"type":"Polygon","arcs":[[2037,2038,2371,392,2372,2036]],"properties":{"label":"flolekya"}},{"type":"Polygon","arcs":[[2724,-2242,-2104,-2720,-2098,2725]],"properties":{"label":"seluka"}},{"type":"Polygon","arcs":[[1249,-2179,-2234,4392,-3729,-311]],"properties":{"label":"napibibibo"}},{"type":"Polygon","arcs":[[2956,2957,-4233,1374,1375,2955]],"properties":{"label":"peke"}},{"type":"Polygon","arcs":[[-3959,3139,-4196,-4195,-4194,-3962]],"properties":{"label":"piko"}},{"type":"Polygon","arcs":[[640,641,642,643,-360,-359,-358,-357,-356,-355,2434,2435,2436,2437,-1281,-1280,-4294,-4293,-4292,-4379]],"properties":{"label":"senokyu"}},{"type":"Polygon","arcs":[[-3436,2770,2771,2772,2773,-3437]],"properties":{"label":"iarzoarkyu"}},{"type":"Polygon","arcs":[[4393,-4319,-3378,-3399,3045,4394]],"properties":{"label":"flosukyakyapi"}},{"type":"Polygon","arcs":[[-3958,-4380,-2871,-2870,2152,-3950]],"properties":{"label":"espitatafu"}},{"type":"Polygon","arcs":[[-4115,-4114,4395,-1570,-1569,-1568,-1567,-1566,164,165,1397,-3989]],"properties":{"label":"kyalekaolu"}},{"type":"Polygon","arcs":[[2929,2213,-2708,2930,-2459,2931]],"properties":{"label":"busi"}},{"type":"Polygon","arcs":[[-4393,-2233,3333,-317,-316,-3730]],"properties":{"label":"sufo"}},{"type":"Polygon","arcs":[[2687,2688,-4381,-3735,843,844]],"properties":{"label":"pepeko"}},{"type":"Polygon","arcs":[[4396,2308,4397,138,2310,2311]],"properties":{"label":"ifloke"}},{"type":"Polygon","arcs":[[-4351,1532,3294,1522,1523,-4356]],"properties":{"label":"kosiko"}},{"type":"Polygon","arcs":[[-4284,-4310,-4309,-4308,-3385,-565]],"properties":{"label":"tamakyu"}},{"type":"Polygon","arcs":[[-4248,-4325,-4324,-4323,1752,1753,1754,1755,-3250,-3249,-3248,-3247,-3246,-3245,3287,3288,1765,1766,-3281,-4249]],"properties":{"label":"fofofota"}},{"type":"Polygon","arcs":[[340,341,-1223,-3705,-1553,-3444]],"properties":{"label":"trimabu"}},{"type":"Polygon","arcs":[[-399,-398,-1613,2120,4398,4399]],"properties":{"label":"zopigo"}},{"type":"Polygon","arcs":[[-3217,1009,1010,1011,-908,-4370]],"properties":{"label":"bukyubi"}},{"type":"Polygon","arcs":[[-4109,551,552,553,554,-4117]],"properties":{"label":"gokoan"}},{"type":"Polygon","arcs":[[-2412,3228,-1527,-4378,-4377,3230]],"properties":{"label":"mata"}},{"type":"Polygon","arcs":[[4400,-4399,2121,2122,2123,4401]],"properties":{"label":"papiarlupi"}},{"type":"Polygon","arcs":[[-3709,-4358,1070,972,973,-4046]],"properties":{"label":"kyupe"}},{"type":"Polygon","arcs":[[-2252,-2251,-1571,-4396,-4113,-4364]],"properties":{"label":"iarkope"}},{"type":"Polygon","arcs":[[-4202,4402,-3469,-4205,-4204,-4203]],"properties":{"label":"trise"}},{"type":"Polygon","arcs":[[4403,-727,-726,2108,2109,2110,2111,2112,2113,2114,2115,-3633,-3641,-3647,-3646,-3645]],"properties":{"label":"taanfoes"}},{"type":"Polygon","arcs":[[4404,4405,-4402,2124,2125,4406]],"properties":{"label":"gonanesisu"}},{"type":"Polygon","arcs":[[-2488,-3792,-2609,471,-2490,-2489]],"properties":{"label":"subi"}},{"type":"Polygon","arcs":[[2309,2142,2143,2144,137,-4398]],"properties":{"label":"triar"}},{"type":"Polygon","arcs":[[2106,-2710,-3856,-665,-664,-663]],"properties":{"label":"fosuflekepi"}},{"type":"Polygon","arcs":[[-472,-471,3099,3100,3101,3102,-4144,-4143,-4147,-4146,-4145,3104,-1385,-4392,-4391,-4390,622,623,624,625,-476,-475,-474,-473]],"properties":{"label":"obifotama"}},{"type":"Polygon","arcs":[[4407,-400,-4400,-4401,-4406,4408]],"properties":{"label":"pita"}},{"type":"Polygon","arcs":[[2345,-3420,-1778,-1983,2343,2344]],"properties":{"label":"flekoanse"}},{"type":"Polygon","arcs":[[-3997,-3588,-1855,-3208,-3132,4409]],"properties":{"label":"takyapesu"}},{"type":"Polygon","arcs":[[-3975,-4083,-4059,-2529,-2528,-3937]],"properties":{"label":"fotrifle"}},{"type":"Polygon","arcs":[[4410,4411,-416,-4056,-2212,4412]],"properties":{"label":"arpi"}},{"type":"Polygon","arcs":[[31,-401,-4408,4413]],"properties":{"label":"senelu"}},{"type":"Polygon","arcs":[[2385,2386,143,-4357]],"properties":{"label":"leansiflean"}},{"type":"Polygon","arcs":[[-1622,2306,2307,-4397,2312,220]],"properties":{"label":"binoanbi"}},{"type":"Polygon","arcs":[[658,659,4414,2464,-3904,-3903]],"properties":{"label":"zope"}},{"type":"Polygon","arcs":[[-823,-417,-4412,-4411,-4413,-2211,880,881,882,883,-440,-439,-438,-437,-436,-435,-434,-433,2565,2566]],"properties":{"label":"arsusupe"}},{"type":"Polygon","arcs":[[30,-4414,-4409,-4405,4415]],"properties":{"label":"piessu"}},{"type":"Polygon","arcs":[[660,661,662,-3419,2463,-4415]],"properties":{"label":"floboma"}},{"type":"Polygon","arcs":[[-4416,-4407,2126,29]],"properties":{"label":"nopakooma"}},{"type":"Polygon","arcs":[[-1694,-2396,-4339,-4367,-4372,1956]],"properties":{"label":"kakopile"}},{"type":"Polygon","arcs":[[-780,3208,-1635,-1634,-4288,-781]],"properties":{"label":"kao"}},{"type":"Polygon","arcs":[[2320,2321,-993,-992,-991,-990,-1296,-1295,-1294,-1293,-1292,-1291,1585,-4021,-4020,-4019,-4018,-4017,-4023,-4022,1601,-3510]],"properties":{"label":"kyasuta"}},{"type":"Polygon","arcs":[[4416,-1883,-729,-728,-4404,-3644]],"properties":{"label":"kaflo"}},{"type":"Polygon","arcs":[[-3214,-3213,-3212,-4265,-4267,-4266,979,980,981,982,983,984,-3342,-3341,-3340,-3339,-3338,-2426,-2425,-2424,-2423,-2422]],"properties":{"label":"bubueskyu"}},{"type":"Polygon","arcs":[[-2558,-1885,-1884,-4417,-3643,-3642]],"properties":{"label":"lego"}},{"type":"Polygon","arcs":[[1263,1264,-2063,-2062,-1961,-3170,-3162,-3161,-3165,-3164,-328,-327,-326,-325,-324,-323,-322,-3628,-4054,-3901,-3900,-3899,-3898,-3897,1259,1260,1261,1262]],"properties":{"label":"flefle"}},{"type":"Polygon","arcs":[[-2156,-3986,-3523,-3996,-3999,-3998,-4410,-3131,177,178,-2158,-2157]],"properties":{"label":"pamapikogo"}},{"type":"Polygon","arcs":[[-3890,-2206,2222,-3876,-3870,-3917]],"properties":{"label":"fule"}},{"type":"Polygon","arcs":[[-1806,-1805,169,-4193,-4192]],"properties":{"label":"kake"}},{"type":"Polygon","arcs":[[-2467,-2466,-2465,-2464,-2477,4417,4418,1971,1972,1973]],"properties":{"label":"leflo"}},{"type":"Polygon","arcs":[[-251,-250,-249,-248,-3049,-3048,-3054,-864,-863,-862,-861,-860,-3593,-3592,-3655,-3654]],"properties":{"label":"eszo"}},{"type":"Polygon","arcs":[[-4345,-242,-241,-3467,-4403,-4201]],"properties":{"label":"anpase"}},{"type":"Polygon","arcs":[[344,345,346,347,-971,-970,-4177,-4176,-3976,-3935,1217,1218,1219,-1945,-1944,343]],"properties":{"label":"luma"}},{"type":"Polygon","arcs":[[4419,2901,2902,2903,-2410,-2409]],"properties":{"label":"anpaka"}},{"type":"Polygon","arcs":[[225,-4180,-3854,-3667,223,224]],"properties":{"label":"setabifo"}},{"type":"Polygon","arcs":[[2898,2899,2900,-4420,-2408,4420]],"properties":{"label":"pinoopi"}},{"type":"Polygon","arcs":[[-4375,95,-3320,-3309,-3308]],"properties":{"label":"sufobo"}},{"type":"Polygon","arcs":[[664,665,-4320,-4394,-4395,3046,1968,1969,1970,-4419,-4418,-2476,-2475,-2474]],"properties":{"label":"kyuboes"}},{"type":"Polygon","arcs":[[2896,2897,-4421,-2407,-546,-545]],"properties":{"label":"ole"}},{"type":"Polygon","arcs":[[-3830,-4226,1308,1309,-3826,-4276]],"properties":{"label":"palukyufle"}},{"type":"Polygon","arcs":[[757,758,759,760,-4359,573,574,575,576,577,-378,-377,-376,-375,-374,-373,2272,-3845,-3844,-3786,-3785,-3784,-3783,-3782,-2266,-2265]],"properties":{"label":"inobi"}},{"type":"Polygon","arcs":[[-3552,-3551,2489,472,473,474,475,476,477,478,479,480,481,-3615,-3614,-3581,-3606,-3605]],"properties":{"label":"sene"}},{"type":"Polygon","arcs":[[-4258,-1128,-1389,-1388,-3361,-3102]],"properties":{"label":"antri"}},{"type":"Polygon","arcs":[[-4121,-4120,-4119,-4118,-2332,-4122]],"properties":{"label":"taarnofose"}},{"type":"Polygon","arcs":[[-2715,-2540,-4326,948,949,-2716]],"properties":{"label":"arpeesta"}},{"type":"Polygon","arcs":[[-3693,3272,-2342,-3983,-3529,-4312]],"properties":{"label":"okosifu"}},{"type":"Polygon","arcs":[[-796,-795,-1065,4421,-3359,-797]],"properties":{"label":"lenatrian"}},{"type":"Polygon","arcs":[[-4165,1843,-2937,-499,-3380,-3671]],"properties":{"label":"kolegofu"}},{"type":"Polygon","arcs":[[1085,-2551,-2550,-2549,-2548,-2119,219,-2313,-2312,-2311,139,140,141,1083,1084]],"properties":{"label":"trilefukeka"}},{"type":"Polygon","arcs":[[-4185,44,1696,1697,1698,-3373]],"properties":{"label":"pakapeko"}},{"type":"Polygon","arcs":[[-4422,-1064,-1063,-1062,2048,-3360]],"properties":{"label":"pako"}}]},"7":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[4422,104,-3175,4423]],"properties":{"label":"esflean"}},{"type":"Polygon","arcs":[[4424,-3447,-582,-581,4425,4426]],"properties":{"label":"tribune"}},{"type":"Polygon","arcs":[[-3785,4427,576,577,-378,4428]],"properties":{"label":"floke"}},{"type":"Polygon","arcs":[[-2915,-2914,3989,4429,3994,-695]],"properties":{"label":"zomafuarbu"}},{"type":"Polygon","arcs":[[-468,4430,4431,-1124,-4257,-469]],"properties":{"label":"zoarzotaflo"}},{"type":"Polygon","arcs":[[4432,4433,574,575,-4428,-3784]],"properties":{"label":"pibilebi"}},{"type":"Polygon","arcs":[[-466,-465,-464,4434,-4431,-467]],"properties":{"label":"paio"}},{"type":"Polygon","arcs":[[-2266,4435,4436,-4433,-3783,-3782]],"properties":{"label":"netrikoluta"}},{"type":"Polygon","arcs":[[4437,-711,4438,4439,4440,4441]],"properties":{"label":"flefleflebogo"}},{"type":"Polygon","arcs":[[1014,4442,-2909,4443,-692,-691]],"properties":{"label":"pimapigo"}},{"type":"Polygon","arcs":[[-2158,4444,-3999,4445,178]],"properties":{"label":"opisu"}},{"type":"Polygon","arcs":[[-1605,-1604,4446,1833,4447,4448]],"properties":{"label":"trifule"}},{"type":"Polygon","arcs":[[-3593,4449,4450,-862,-861,-860]],"properties":{"label":"pase"}},{"type":"Polygon","arcs":[[4451,-4441,4452,-2899,-2898,3366]],"properties":{"label":"fupekoanbi"}},{"type":"Polygon","arcs":[[1595,1596,4453,1592,1593,1594]],"properties":{"label":"kyukafu"}},{"type":"Polygon","arcs":[[1187,3668,2763,4454,-2701,-2700]],"properties":{"label":"koboanno"}},{"type":"Polygon","arcs":[[4455,-875,-874,-873,-747,4042]],"properties":{"label":"manalefobo"}},{"type":"Polygon","arcs":[[4456,17,-4228,4457,4458,-4242]],"properties":{"label":"pibukyubule"}},{"type":"Polygon","arcs":[[-1377,-1376,-3453,1782,4459,3480]],"properties":{"label":"eskyasikobu"}},{"type":"Polygon","arcs":[[1597,4460,1589,1590,1591,-4454]],"properties":{"label":"isepe"}},{"type":"Polygon","arcs":[[2504,-4360,-4350,2514,2515,2516]],"properties":{"label":"nabi"}},{"type":"Polygon","arcs":[[1259,4461,-3165,4462,-3898,-3897]],"properties":{"label":"kole"}},{"type":"Polygon","arcs":[[4463,4464,1587,1588,-4461,1598]],"properties":{"label":"paifutaes"}},{"type":"Polygon","arcs":[[219,-2313,-2312,4465,-2548,-2119]],"properties":{"label":"sueslees"}},{"type":"Polygon","arcs":[[4466,1280,1281,4467,4468,4118]],"properties":{"label":"pazokyu"}},{"type":"Polygon","arcs":[[642,643,-360,4469,4470,4471]],"properties":{"label":"kyaflo"}},{"type":"Polygon","arcs":[[614,3476,4472,1788,1789,1790]],"properties":{"label":"kosego"}},{"type":"Polygon","arcs":[[4021,4473,4474,-4464,1599,1600]],"properties":{"label":"foboar"}},{"type":"Polygon","arcs":[[-4466,-2311,139,4475,-2549]],"properties":{"label":"sefopebuta"}},{"type":"Polygon","arcs":[[-929,-928,312,-2916,-2397,-930]],"properties":{"label":"nofo"}},{"type":"Polygon","arcs":[[-2156,-3986,-3523,-3996,-4445,-2157]],"properties":{"label":"kyago"}},{"type":"Polygon","arcs":[[4476,915,916,-3434,-3446,-3456]],"properties":{"label":"sike"}},{"type":"Polygon","arcs":[[1573,4477,4478,4479,3395,1572]],"properties":{"label":"boespi"}},{"type":"Polygon","arcs":[[-2550,-4476,140,4480]],"properties":{"label":"kyuarkelu"}},{"type":"Polygon","arcs":[[-3655,4481,4482,4483,-4450,-3592]],"properties":{"label":"goboianno"}},{"type":"Polygon","arcs":[[4484,4485,4486,-1258,-1257,4487]],"properties":{"label":"takyuogope"}},{"type":"Polygon","arcs":[[-1107,-1106,-3353,-2208,4488,4489]],"properties":{"label":"sifoolu"}},{"type":"Polygon","arcs":[[4490,4019,4020,1586,-4465,-4475]],"properties":{"label":"oseboko"}},{"type":"Polygon","arcs":[[4491,3144,3145,156,3425,4492]],"properties":{"label":"neluanno"}},{"type":"Polygon","arcs":[[16,-4457,-4241]],"properties":{"label":"luzo"}},{"type":"Polygon","arcs":[[332,4009,-3939,-2848,4493,331]],"properties":{"label":"leflefuta"}},{"type":"Polygon","arcs":[[4494,4495,4496,4497,4498,-3682]],"properties":{"label":"olesenofu"}},{"type":"Polygon","arcs":[[40,2769,3435,4499]],"properties":{"label":"nakyuosune"}},{"type":"Polygon","arcs":[[1138,4500,-892,-891,-890,-3430]],"properties":{"label":"kepe"}},{"type":"Polygon","arcs":[[-2165,3142,3143,-4492,4501,2229]],"properties":{"label":"oflema"}},{"type":"Polygon","arcs":[[360,3713,-3533,4502,358,359]],"properties":{"label":"tamapane"}},{"type":"Polygon","arcs":[[39,-4500,3436,2774,3437]],"properties":{"label":"okyakabi"}},{"type":"Polygon","arcs":[[4503,4504,-894,-893,-4501,1139]],"properties":{"label":"sutaarna"}},{"type":"Polygon","arcs":[[4505,4506,-4376,-3306,424,425]],"properties":{"label":"zoolekya"}},{"type":"Polygon","arcs":[[3453,3454,3455,-3445,4507,897]],"properties":{"label":"fopisibubo"}},{"type":"Polygon","arcs":[[3438,4508,4509,-4504,1140,1141]],"properties":{"label":"pagokole"}},{"type":"Polygon","arcs":[[237,4510,4511,4512,235,236]],"properties":{"label":"pamaolefo"}},{"type":"Polygon","arcs":[[190,4513,2715,950,951,952]],"properties":{"label":"kakyunezoka"}},{"type":"Polygon","arcs":[[4514,-3388,-1261,-1260,-1259,-4487]],"properties":{"label":"pigobu"}},{"type":"Polygon","arcs":[[-3683,-4499,4515,172]],"properties":{"label":"letatri"}},{"type":"Polygon","arcs":[[896,-4508,-3448,-4425,4516,4517]],"properties":{"label":"subisefuse"}},{"type":"Polygon","arcs":[[1575,1576,4518,4519,-4478,1574]],"properties":{"label":"maesesar"}},{"type":"Polygon","arcs":[[3440,3441,4520,4521,-4509,3439]],"properties":{"label":"kano"}},{"type":"Polygon","arcs":[[4522,-248,-3049,-3048,4523,-4483]],"properties":{"label":"bipaflotri"}},{"type":"Polygon","arcs":[[3594,4524,4525,4526,4527,-3495]],"properties":{"label":"kapagoi"}},{"type":"Polygon","arcs":[[4528,-4489,-2210,-1792,-3718,4529]],"properties":{"label":"kobuzopao"}},{"type":"Polygon","arcs":[[4530,119,3596,4531]],"properties":{"label":"anbo"}},{"type":"Polygon","arcs":[[3845,-3741,4532,1809,1810,3846]],"properties":{"label":"naozo"}},{"type":"Polygon","arcs":[[-993,-992,4533,-4017,4534,2321]],"properties":{"label":"nemata"}},{"type":"Polygon","arcs":[[3477,3478,4535,1786,1787,-4473]],"properties":{"label":"pakepa"}},{"type":"Polygon","arcs":[[2130,4536,4537,4538,4539,2129]],"properties":{"label":"kekyukyu"}},{"type":"Polygon","arcs":[[4540,4541,-3546,-687,-686,-685]],"properties":{"label":"futaozo"}},{"type":"Polygon","arcs":[[4542,-4426,-580,-579,-288,4543]],"properties":{"label":"kyaessese"}},{"type":"Polygon","arcs":[[63,-3244,-3226,4544,3299]],"properties":{"label":"flenosu"}},{"type":"Polygon","arcs":[[4545,-4266,979,980,4546,4547]],"properties":{"label":"zone"}},{"type":"Polygon","arcs":[[1032,4548,-4544,-287,1030,1031]],"properties":{"label":"bigonakasi"}},{"type":"Polygon","arcs":[[4549,3464,4550,2390,-2380,4551]],"properties":{"label":"lebofle"}},{"type":"Polygon","arcs":[[3459,4552,-4552,-2379,-755,-754]],"properties":{"label":"triespa"}},{"type":"Polygon","arcs":[[-3581,-3606,4553,4554,4555,-3614]],"properties":{"label":"kyunebu"}},{"type":"Polygon","arcs":[[4556,-4517,-4427,-4543,-4549,1033]],"properties":{"label":"mafle"}},{"type":"Polygon","arcs":[[-3450,1709,1710,1711,1712,4557]],"properties":{"label":"bugosi"}},{"type":"Polygon","arcs":[[-2543,-2542,-2541,2714,-4514,191]],"properties":{"label":"esseluan"}},{"type":"Polygon","arcs":[[-1509,4558,4559,-3065,4560,-1510]],"properties":{"label":"neesfufleta"}},{"type":"Polygon","arcs":[[894,895,-4518,-4557,1034,893]],"properties":{"label":"mapigoanne"}},{"type":"Polygon","arcs":[[4561,-3451,-4558,1713,4562,4563]],"properties":{"label":"luesobo"}},{"type":"Polygon","arcs":[[4564,828,829,-3429,-3405,-3129]],"properties":{"label":"antrikoar"}},{"type":"Polygon","arcs":[[1085,-2551,-4481,141,1083,1084]],"properties":{"label":"nosu"}},{"type":"Polygon","arcs":[[4565,4566,-4530,-3717,-3535,4567]],"properties":{"label":"senakoes"}},{"type":"Polygon","arcs":[[4568,4569,4570,-3848,-3798,-3838]],"properties":{"label":"lees"}},{"type":"Polygon","arcs":[[-3489,-3503,-3452,-4562,4571,36]],"properties":{"label":"noseflosufo"}},{"type":"Polygon","arcs":[[2320,-4535,-4023,-4022,1601,-3510]],"properties":{"label":"osufu"}},{"type":"Polygon","arcs":[[-4458,-4227,-3159,-3158,524,4572]],"properties":{"label":"tribole"}},{"type":"Polygon","arcs":[[-406,-405,560,3542,-3463,4573]],"properties":{"label":"sipa"}},{"type":"Polygon","arcs":[[4574,4575,4161,8]],"properties":{"label":"kamaflearke"}},{"type":"Polygon","arcs":[[3461,3462,3463,-4550,-4553,3460]],"properties":{"label":"pees"}},{"type":"Polygon","arcs":[[-408,-407,-4574,-3462,4576,1829]],"properties":{"label":"fuzone"}},{"type":"Polygon","arcs":[[-4223,2420,2421,2422,2423,4577]],"properties":{"label":"kebibuar"}},{"type":"Polygon","arcs":[[-3500,4578,-1183,-1182,-1181,4579]],"properties":{"label":"manabo"}},{"type":"Polygon","arcs":[[-4522,4580,4581,-895,-4505,-4510]],"properties":{"label":"pepifle"}},{"type":"Polygon","arcs":[[2496,2497,-995,-3547,-2318,4582]],"properties":{"label":"fupi"}},{"type":"Polygon","arcs":[[-3002,-3001,4583,-2957,4584,1380]],"properties":{"label":"keantrikya"}},{"type":"Polygon","arcs":[[-3293,4585,-4488,-1256,-1255,-1254]],"properties":{"label":"lufoluanar"}},{"type":"Polygon","arcs":[[-4054,-3901,4586,-323,-322,-3628]],"properties":{"label":"anzosunafo"}},{"type":"Polygon","arcs":[[4587,-1807,4191,4588,4589,-4497]],"properties":{"label":"nanai"}},{"type":"Polygon","arcs":[[4590,2495,-4583,-2317,502,503]],"properties":{"label":"tata"}},{"type":"Polygon","arcs":[[2228,-4502,-4493,3426,-1559,-1558]],"properties":{"label":"fukese"}},{"type":"Polygon","arcs":[[116,-3596,-3595,-3494,-3199]],"properties":{"label":"trikyu"}},{"type":"Polygon","arcs":[[4591,4592,474,475,476,4593]],"properties":{"label":"iflesepi"}},{"type":"Polygon","arcs":[[-806,4594,2494,-4591,504,505]],"properties":{"label":"notalu"}},{"type":"Polygon","arcs":[[-4555,4595,-4594,477,478,4596]],"properties":{"label":"gosimabo"}},{"type":"Polygon","arcs":[[1607,2491,2492,2493,-4595,-805]],"properties":{"label":"bupelefle"}},{"type":"Polygon","arcs":[[4597,4598,4599,-3657,4600,996]],"properties":{"label":"nebimasi"}},{"type":"Polygon","arcs":[[2012,4601,4602,-3087,2010,2011]],"properties":{"label":"fosu"}},{"type":"Polygon","arcs":[[-3615,-4556,-4597,479,480,481]],"properties":{"label":"makyusile"}},{"type":"Polygon","arcs":[[4603,-2188,-1329,-1919,-1918,4604]],"properties":{"label":"fleoke"}},{"type":"Polygon","arcs":[[-3982,-2768,-2080,-2079,-4232,2959]],"properties":{"label":"nefu"}},{"type":"Polygon","arcs":[[3486,1895,1896,-3416,1902,4605]],"properties":{"label":"argo"}},{"type":"Polygon","arcs":[[1379,-4585,-2956,1376,1377,1378]],"properties":{"label":"sizofota"}},{"type":"Polygon","arcs":[[-3578,-1889,-1888,4606,3582,3583]],"properties":{"label":"okabokasi"}},{"type":"Polygon","arcs":[[2477,1286,2063,2064,2065,2066]],"properties":{"label":"nobupikaflo"}},{"type":"Polygon","arcs":[[3421,3422,4607,-4485,-4586,-3292]],"properties":{"label":"luma"}},{"type":"Polygon","arcs":[[-1851,-1850,-1808,-4588,-4496,4608]],"properties":{"label":"flobo"}},{"type":"Polygon","arcs":[[-933,-2400,2478,4609,3561,3562]],"properties":{"label":"nobufo"}},{"type":"Polygon","arcs":[[-3605,-3552,4610,-4592,-4596,-4554]],"properties":{"label":"tale"}},{"type":"Polygon","arcs":[[-4607,-1887,-1886,2557,2558,3584]],"properties":{"label":"lekyupi"}},{"type":"Polygon","arcs":[[3489,3490,4611,-3127,849,850]],"properties":{"label":"oka"}},{"type":"Polygon","arcs":[[-4386,-1378,-3481,-3480,-3479,4612]],"properties":{"label":"kanena"}},{"type":"Polygon","arcs":[[4613,4244,526,527,4614,4238]],"properties":{"label":"koan"}},{"type":"Polygon","arcs":[[640,641,-4472,4615,-4292,-4379]],"properties":{"label":"lunaeskyu"}},{"type":"Polygon","arcs":[[-1490,-1247,4616,3204,-2030,-4260]],"properties":{"label":"fonooes"}},{"type":"Polygon","arcs":[[3479,-4460,1783,1784,1785,-4536]],"properties":{"label":"anpinape"}},{"type":"Polygon","arcs":[[-2004,-2003,4617,4033,4618,4028]],"properties":{"label":"flokyazono"}},{"type":"Polygon","arcs":[[943,4619,931,932,933,-3912]],"properties":{"label":"lekya"}},{"type":"Polygon","arcs":[[3609,4620,4621,-631,-1195,-2221]],"properties":{"label":"kyusizobuke"}},{"type":"Polygon","arcs":[[3465,563,564,565,2389,-4551]],"properties":{"label":"kesibipi"}},{"type":"Polygon","arcs":[[-4281,4298,929,930,-4620,944]],"properties":{"label":"masunaka"}},{"type":"Polygon","arcs":[[4622,3485,-4606,1903,604,605]],"properties":{"label":"pefufo"}},{"type":"Polygon","arcs":[[4623,301,2537,2538,2539,2540]],"properties":{"label":"lukeketrisu"}},{"type":"Polygon","arcs":[[3423,-1986,-3389,-4515,-4486,-4608]],"properties":{"label":"mafofusuar"}},{"type":"Polygon","arcs":[[-1853,-1852,-4609,-4495,-3681,3135]],"properties":{"label":"nopa"}},{"type":"Polygon","arcs":[[-2523,2616,3621,4624,-2605,-1703]],"properties":{"label":"bupi"}},{"type":"Polygon","arcs":[[4625,3318,-3242,-3241,4626,4627]],"properties":{"label":"zobuflefu"}},{"type":"Polygon","arcs":[[3573,4628,-2389,-2388,146,4629]],"properties":{"label":"lubutri"}},{"type":"Polygon","arcs":[[117,4630,-4525,3595]],"properties":{"label":"peeske"}},{"type":"Polygon","arcs":[[1177,1178,3978,-2663,3979,1679]],"properties":{"label":"panonefui"}},{"type":"Polygon","arcs":[[-4625,3622,4631,4632,4633,-2606]],"properties":{"label":"ike"}},{"type":"Polygon","arcs":[[4634,4635,-3756,187]],"properties":{"label":"ikatri"}},{"type":"Polygon","arcs":[[-3393,-3392,-3238,4636,-3286,4637]],"properties":{"label":"gogo"}},{"type":"Polygon","arcs":[[741,4638,-3677,-4191,1191,1192]],"properties":{"label":"nefle"}},{"type":"Polygon","arcs":[[-2607,-4634,4639,2290,2291,2292]],"properties":{"label":"pifukozokyu"}},{"type":"Polygon","arcs":[[-1246,4640,-2681,-2680,3203,-4617]],"properties":{"label":"arketa"}},{"type":"Polygon","arcs":[[-4572,-4564,4641,35]],"properties":{"label":"bopiiko"}},{"type":"Polygon","arcs":[[-4303,4642,4643,928,-4299,-4280]],"properties":{"label":"magokyu"}},{"type":"Polygon","arcs":[[4027,-4619,4034,4035,446,4644]],"properties":{"label":"nakyanofo"}},{"type":"Polygon","arcs":[[-2112,-2111,4645,3638,4646,2594]],"properties":{"label":"triizotribo"}},{"type":"Polygon","arcs":[[4647,3642,3643,3644,3645,3646]],"properties":{"label":"ise"}},{"type":"Polygon","arcs":[[-4503,-3532,4648,-2244,356,357]],"properties":{"label":"fofoke"}},{"type":"Polygon","arcs":[[4649,1822,-3575,-3574,-3573,-3572]],"properties":{"label":"zozo"}},{"type":"Polygon","arcs":[[-2515,-2514,4650,4041,2993,2994]],"properties":{"label":"lui"}},{"type":"Polygon","arcs":[[4651,4652,-4388,-4389,616,617]],"properties":{"label":"pepa"}},{"type":"Polygon","arcs":[[4653,309,310,311,927,-4644]],"properties":{"label":"trisubi"}},{"type":"Polygon","arcs":[[3623,3620,-2132,-2131,4654,-4632]],"properties":{"label":"sisiflesizo"}},{"type":"Polygon","arcs":[[3747,3748,2588,-661,-660,4655]],"properties":{"label":"pena"}},{"type":"Polygon","arcs":[[608,4656,3484,-4623,606,607]],"properties":{"label":"zosusu"}},{"type":"Polygon","arcs":[[4657,4658,4659,-3089,-3088,-4603]],"properties":{"label":"kelepa"}},{"type":"Polygon","arcs":[[3559,4660,2156,2157,179,4661]],"properties":{"label":"funasi"}},{"type":"Polygon","arcs":[[-1909,-1908,300,-4624,2541,4662]],"properties":{"label":"bikyukyu"}},{"type":"Polygon","arcs":[[-716,4663,-4442,-4452,3367,-717]],"properties":{"label":"ankya"}},{"type":"Polygon","arcs":[[4664,2592,4665,1419,1420,4666]],"properties":{"label":"binepeflo"}},{"type":"Polygon","arcs":[[-1741,-1740,-1739,4667,4668,-1615]],"properties":{"label":"estrise"}},{"type":"Polygon","arcs":[[4669,3572,-4630,147,4670]],"properties":{"label":"nabi"}},{"type":"Polygon","arcs":[[-4631,118,-4531,4671,-4526]],"properties":{"label":"sikyunaflear"}},{"type":"Polygon","arcs":[[304,305,306,4672,-4301,4673]],"properties":{"label":"trikyu"}},{"type":"Polygon","arcs":[[2617,4674,4675,-3624,-3623,-3622]],"properties":{"label":"esfonopego"}},{"type":"Polygon","arcs":[[-3496,-4528,4676,4677,1101,1102]],"properties":{"label":"kosu"}},{"type":"Polygon","arcs":[[-985,-984,3826,4678,4679,-986]],"properties":{"label":"bokyuko"}},{"type":"Polygon","arcs":[[-3612,1645,4680,-3454,898,899]],"properties":{"label":"fopaesko"}},{"type":"Polygon","arcs":[[2619,4681,4682,4683,-4675,2618]],"properties":{"label":"trilu"}},{"type":"Polygon","arcs":[[1497,1498,4684,-2682,-4641,-1245]],"properties":{"label":"sepalutri"}},{"type":"Polygon","arcs":[[2132,2133,1494,4685,-4537,2131]],"properties":{"label":"bufloflopi"}},{"type":"Polygon","arcs":[[-4642,-4563,1714,1715,34]],"properties":{"label":"kole"}},{"type":"Polygon","arcs":[[4686,4687,4688,-3245,3287,4689]],"properties":{"label":"bisilekyupi"}},{"type":"Polygon","arcs":[[-1111,-1110,-1109,4690,4691,-1112]],"properties":{"label":"ianpian"}},{"type":"Polygon","arcs":[[-987,-4680,4692,3831,4693,-988]],"properties":{"label":"lesepesifu"}},{"type":"Polygon","arcs":[[-4684,4694,4695,-2133,-3621,-4676]],"properties":{"label":"selufopeta"}},{"type":"Polygon","arcs":[[4696,4026,-4645,447,448,4697]],"properties":{"label":"trisita"}},{"type":"Polygon","arcs":[[-2703,4698,-368,-367,-366,-2573]],"properties":{"label":"kyule"}},{"type":"Polygon","arcs":[[-4141,-1192,-1191,4699,4700,4701]],"properties":{"label":"bieskebopa"}},{"type":"Polygon","arcs":[[620,4702,4703,-4652,618,619]],"properties":{"label":"kakeflepabu"}},{"type":"Polygon","arcs":[[4704,-1149,-1094,1493,-2134,-4696]],"properties":{"label":"zozole"}},{"type":"Polygon","arcs":[[-927,3746,-4656,-659,-658,-657]],"properties":{"label":"foes"}},{"type":"Polygon","arcs":[[610,4705,3482,3483,-4657,609]],"properties":{"label":"siflo"}},{"type":"Polygon","arcs":[[-4700,-1190,-1189,-1188,-1187,4706]],"properties":{"label":"gotri"}},{"type":"Polygon","arcs":[[4707,3833,4708,2640,1292,1293]],"properties":{"label":"anzo"}},{"type":"Polygon","arcs":[[4709,385,-3656,-3590,-3635,4710]],"properties":{"label":"bikyazoilu"}},{"type":"Polygon","arcs":[[4711,-4671,148]],"properties":{"label":"fusepakefle"}},{"type":"Polygon","arcs":[[4712,-3603,-3728,-2784,4713,-4512]],"properties":{"label":"bifle"}},{"type":"Polygon","arcs":[[4714,-4701,-4707,-1186,4381,4715]],"properties":{"label":"pafuflopaan"}},{"type":"Polygon","arcs":[[3834,3825,1310,-3766,2639,-4709]],"properties":{"label":"fonozo"}},{"type":"Polygon","arcs":[[46,-1152,4716,-4682,2620]],"properties":{"label":"floika"}},{"type":"Polygon","arcs":[[4717,4718,4719,-2742,4720,4721]],"properties":{"label":"opekyubu"}},{"type":"Polygon","arcs":[[-4127,-4142,-4702,-4715,4722,-4128]],"properties":{"label":"sekaselefo"}},{"type":"Polygon","arcs":[[4723,-2574,-364,-363,-3695,-1683]],"properties":{"label":"nano"}},{"type":"Polygon","arcs":[[-3692,4724,4725,-3665,-3664,-3663]],"properties":{"label":"arsibuanfo"}},{"type":"Polygon","arcs":[[1646,913,914,-4477,-3455,-4681]],"properties":{"label":"pipipakya"}},{"type":"Polygon","arcs":[[-4129,-4723,-4716,4382,-3498,-3772]],"properties":{"label":"zobokabu"}},{"type":"Polygon","arcs":[[1181,4726,-2575,-4724,-1682,-1681]],"properties":{"label":"flebukoko"}},{"type":"Polygon","arcs":[[4727,-4448,1834,1835,-3666,-4726]],"properties":{"label":"eskaarogo"}},{"type":"Polygon","arcs":[[-3531,3712,1448,-2741,-2245,-4649]],"properties":{"label":"anpiflei"}},{"type":"Polygon","arcs":[[-4455,2764,-370,-369,-4699,-2702]],"properties":{"label":"pizokyunelu"}},{"type":"Polygon","arcs":[[1183,3714,3715,-2571,-4727,1182]],"properties":{"label":"artribu"}},{"type":"Polygon","arcs":[[4389,4390,4728,4729,-4703,621]],"properties":{"label":"fusukyamatri"}},{"type":"Polygon","arcs":[[4730,-2355,2059,2060,-336,3699]],"properties":{"label":"supai"}},{"type":"Polygon","arcs":[[-4383,-4382,-1185,-1184,-4579,-3499]],"properties":{"label":"flepinapefo"}},{"type":"Polygon","arcs":[[1471,1472,384,-4710,4731,-1869]],"properties":{"label":"lusi"}},{"type":"Polygon","arcs":[[3569,3570,3571,-4670,-4712,149]],"properties":{"label":"pekyakebuan"}},{"type":"Polygon","arcs":[[-4527,-4672,-4532,3597,4732,-4677]],"properties":{"label":"piarbita"}},{"type":"Polygon","arcs":[[-3537,-3719,-3604,-4713,-4511,238]],"properties":{"label":"bibu"}},{"type":"Polygon","arcs":[[-4679,3827,3828,3829,3830,-4693]],"properties":{"label":"zoessesu"}},{"type":"Polygon","arcs":[[4733,-2728,4734,2267,2268,-2570]],"properties":{"label":"funefleifu"}},{"type":"Polygon","arcs":[[4735,-3029,-2759,-3115,-3545,4736]],"properties":{"label":"nabufulu"}},{"type":"Polygon","arcs":[[-4106,-4240,-4239,-4238,-4237,-2837]],"properties":{"label":"fleibigofle"}},{"type":"Polygon","arcs":[[-4717,-1151,-1150,-4705,-4695,-4683]],"properties":{"label":"kazokyaflo"}},{"type":"Polygon","arcs":[[4737,-3501,-4580,-1180,-1179,4738]],"properties":{"label":"fokyubuke"}},{"type":"Polygon","arcs":[[2262,-2722,-2729,-4734,-2569,2261]],"properties":{"label":"kyupafobi"}},{"type":"Polygon","arcs":[[-2406,-4187,-4225,4739,4740,-2394]],"properties":{"label":"gope"}},{"type":"Polygon","arcs":[[-4264,4741,-4739,-1178,-1177,-1881]],"properties":{"label":"magofu"}},{"type":"Polygon","arcs":[[4742,-1910,-4663,2542,192]],"properties":{"label":"suse"}},{"type":"Polygon","arcs":[[-4262,-3773,-3502,-4738,-4742,-4263]],"properties":{"label":"nofle"}},{"type":"Polygon","arcs":[[4743,-1911,-4743,193]],"properties":{"label":"opa"}},{"type":"Polygon","arcs":[[3684,-1728,-1727,4744,3210,3211]],"properties":{"label":"sufle"}},{"type":"Polygon","arcs":[[-4730,4745,4746,-4384,-4653,-4704]],"properties":{"label":"biflees"}},{"type":"Polygon","arcs":[[4747,-2335,-2356,-4731,3700,3701]],"properties":{"label":"bikya"}},{"type":"Polygon","arcs":[[-1915,-1914,-1913,-1912,-4744,194]],"properties":{"label":"supi"}},{"type":"Polygon","arcs":[[4748,-2755,792,793,794,4749]],"properties":{"label":"tapepe"}},{"type":"Polygon","arcs":[[4750,4751,-1721,-2829,-3015,4752]],"properties":{"label":"esta"}},{"type":"Polygon","arcs":[[-2907,-2895,2911,2912,2913,4753]],"properties":{"label":"buluanta"}},{"type":"Polygon","arcs":[[-1870,-4732,-4711,-3634,-2826,-1871]],"properties":{"label":"anpakase"}},{"type":"Polygon","arcs":[[-3727,-3726,-3688,3758,-3754,-1315]],"properties":{"label":"onebo"}},{"type":"Polygon","arcs":[[4754,4755,4756,-3748,-3747,-926]],"properties":{"label":"kenono"}},{"type":"Polygon","arcs":[[-4539,4757,-4750,795,-3540,4758]],"properties":{"label":"pafuesesne"}},{"type":"Polygon","arcs":[[4759,3663,4760,-3651,490,491]],"properties":{"label":"kobusebu"}},{"type":"Polygon","arcs":[[4761,2585,2586,2587,-3749,-4757]],"properties":{"label":"kesi"}},{"type":"Polygon","arcs":[[-4686,1495,-2756,-4749,-4758,-4538]],"properties":{"label":"itapa"}},{"type":"Polygon","arcs":[[-2110,-2109,-725,-3609,3637,-4646]],"properties":{"label":"kalu"}},{"type":"Polygon","arcs":[[2843,-4130,-3774,4261,4762,-2834]],"properties":{"label":"ikyasu"}},{"type":"Polygon","arcs":[[-2268,-2267,3781,4763,3780,-2661]],"properties":{"label":"flolesi"}},{"type":"Polygon","arcs":[[1828,-4577,-3461,-3460,-753,2391]],"properties":{"label":"zonosuna"}},{"type":"Polygon","arcs":[[3724,-2860,-2750,-3686,3725,4764]],"properties":{"label":"kyafle"}},{"type":"Polygon","arcs":[[-2835,-4763,4262,4263,-1880,-2815]],"properties":{"label":"kyuzoflenoke"}},{"type":"Polygon","arcs":[[-4764,3782,3783,3784,3785,3786]],"properties":{"label":"gokoma"}},{"type":"Polygon","arcs":[[2535,2536,-2336,-4748,3702,4765]],"properties":{"label":"nanetri"}},{"type":"Polygon","arcs":[[4766,4767,4768,-3751,-3757,-4636]],"properties":{"label":"kamapebu"}},{"type":"Polygon","arcs":[[2128,-4540,-4759,-3539,-2552,2127]],"properties":{"label":"leflepilesi"}},{"type":"Polygon","arcs":[[4769,-2850,-1575,-1574,4770,4007]],"properties":{"label":"kabotrifu"}},{"type":"Polygon","arcs":[[-4513,-4714,-2788,-2796,233,234]],"properties":{"label":"patrizo"}},{"type":"Polygon","arcs":[[-1310,4771,3722,4772,-1312,-1311]],"properties":{"label":"bofokyape"}},{"type":"Polygon","arcs":[[4773,3815,2282,-940,-3752,-4769]],"properties":{"label":"pipiokata"}},{"type":"Polygon","arcs":[[-1308,4774,3720,3721,-4772,-1309]],"properties":{"label":"trike"}},{"type":"Polygon","arcs":[[654,655,656,4775,4776,-1770]],"properties":{"label":"tamakoflo"}},{"type":"Polygon","arcs":[[346,347,-971,4777,4778,345]],"properties":{"label":"kyagokaselu"}},{"type":"Polygon","arcs":[[4779,-3394,-4638,-3285,1567,1568]],"properties":{"label":"flefusibofo"}},{"type":"Polygon","arcs":[[4780,748,2815,-3680,-3674,4781]],"properties":{"label":"naarkofofo"}},{"type":"Polygon","arcs":[[4091,-3190,1654,4782,4089,4090]],"properties":{"label":"nanebi"}},{"type":"Polygon","arcs":[[-1306,-1305,-1304,3719,-4775,-1307]],"properties":{"label":"esmafues"}},{"type":"Polygon","arcs":[[4783,2184,-3025,3774,3775,4784]],"properties":{"label":"kapase"}},{"type":"Polygon","arcs":[[4785,-4039,-4043,-746,4786,4787]],"properties":{"label":"namale"}},{"type":"Polygon","arcs":[[594,595,-1424,4788,-3818,593]],"properties":{"label":"kyafueskya"}},{"type":"Polygon","arcs":[[2582,2583,2584,-4762,-4756,4789]],"properties":{"label":"luflekoi"}},{"type":"Polygon","arcs":[[4790,2534,-4766,3703,1267,1268]],"properties":{"label":"pesifu"}},{"type":"Polygon","arcs":[[188,4791,4792,-4767,-4635]],"properties":{"label":"kobuko"}},{"type":"Polygon","arcs":[[-4096,-4095,-4091,4793,-4136,4794]],"properties":{"label":"anfleonosu"}},{"type":"Polygon","arcs":[[-3740,-605,-604,-603,1808,-4533]],"properties":{"label":"letatata"}},{"type":"Polygon","arcs":[[-4789,-1423,3838,4795,4796,-3819]],"properties":{"label":"eskyapatri"}},{"type":"Polygon","arcs":[[2243,2244,2245,-1514,4797,355]],"properties":{"label":"kolunoseno"}},{"type":"Polygon","arcs":[[1819,1820,1821,-4650,-3571,-3910]],"properties":{"label":"obibo"}},{"type":"Polygon","arcs":[[4798,-4721,-2744,2302,-2143,-2142]],"properties":{"label":"bianpekei"}},{"type":"Polygon","arcs":[[4799,-4097,-4795,-4135,-1164,-1163]],"properties":{"label":"lubui"}},{"type":"Polygon","arcs":[[-3820,-4797,4800,-2583,-2582,2939]],"properties":{"label":"fukyaflebipi"}},{"type":"Polygon","arcs":[[-4678,-4733,3598,1098,1099,1100]],"properties":{"label":"luko"}},{"type":"Polygon","arcs":[[-1160,-3881,-4098,-4800,-1162,-1161]],"properties":{"label":"tapikeka"}},{"type":"Polygon","arcs":[[-4796,3839,3837,-3797,-2584,-4801]],"properties":{"label":"maartakyuan"}},{"type":"Polygon","arcs":[[4801,-357,-356,-355,2434,4802]],"properties":{"label":"sikofle"}},{"type":"Polygon","arcs":[[4803,127,4804,4805,4806]],"properties":{"label":"kebu"}},{"type":"Polygon","arcs":[[4807,84,1994,4808]],"properties":{"label":"obosipibu"}},{"type":"Polygon","arcs":[[-4042,-4041,-4040,-4786,4809,2992]],"properties":{"label":"arzo"}},{"type":"Polygon","arcs":[[3847,3848,-2243,-2725,-2737,-3799]],"properties":{"label":"nasepa"}},{"type":"Polygon","arcs":[[2580,2581,-4790,-4755,-925,-924]],"properties":{"label":"pemakyasile"}},{"type":"Polygon","arcs":[[668,4810,2533,-4791,1269,1270]],"properties":{"label":"buseno"}},{"type":"Polygon","arcs":[[3679,2816,-2262,-2261,-3619,-3675]],"properties":{"label":"fukape"}},{"type":"Polygon","arcs":[[3863,83,-4808,4811,4812]],"properties":{"label":"neoi"}},{"type":"Polygon","arcs":[[-1420,-1419,-1418,4813,-4570,4814]],"properties":{"label":"suanar"}},{"type":"Polygon","arcs":[[354,-4798,-1519,4815,352,353]],"properties":{"label":"fufotripa"}},{"type":"Polygon","arcs":[[-1618,4816,-4722,-4799,-2141,-2140]],"properties":{"label":"goka"}},{"type":"Polygon","arcs":[[-3769,3872,4817,-1755,-1754,-3679]],"properties":{"label":"flezobifoar"}},{"type":"Polygon","arcs":[[4818,4099,4100,4819,4820,-3879]],"properties":{"label":"fupe"}},{"type":"Polygon","arcs":[[-4814,-1417,-1198,-2240,-3849,-4571]],"properties":{"label":"nozo"}},{"type":"Polygon","arcs":[[-3880,-4821,4821,4095,4096,4097]],"properties":{"label":"sekenabu"}},{"type":"Polygon","arcs":[[2181,2182,2183,-4784,4822,3779]],"properties":{"label":"biar"}},{"type":"Polygon","arcs":[[-4820,4101,-3191,-4092,4094,-4822]],"properties":{"label":"flekyao"}},{"type":"Polygon","arcs":[[4823,4824,-4413,-2211,880,881]],"properties":{"label":"fukyafo"}},{"type":"Polygon","arcs":[[1656,1657,4098,-4819,-3878,-1157]],"properties":{"label":"flebuzogogo"}},{"type":"Polygon","arcs":[[4825,4826,-3861,-3860,-3090,-4660]],"properties":{"label":"fopi"}},{"type":"Polygon","arcs":[[-3915,-601,-600,3920,2884,-2071]],"properties":{"label":"sezo"}},{"type":"Polygon","arcs":[[2991,-4810,-4788,4827,4069,4070]],"properties":{"label":"paokaies"}},{"type":"Polygon","arcs":[[745,746,747,-4781,4828,744]],"properties":{"label":"kyukya"}},{"type":"Polygon","arcs":[[670,3698,2531,2532,-4811,669]],"properties":{"label":"bimasenafo"}},{"type":"Polygon","arcs":[[4829,4830,1650,-3189,-4102,-4101]],"properties":{"label":"lekya"}},{"type":"Polygon","arcs":[[-4109,551,552,553,554,-4117]],"properties":{"label":"kyatasuse"}},{"type":"Polygon","arcs":[[4831,4832,1976,1977,-3857,2471]],"properties":{"label":"patrikaflotri"}},{"type":"Polygon","arcs":[[-4816,-1518,4833,3807,350,351]],"properties":{"label":"kyuanpifu"}},{"type":"Polygon","arcs":[[-1616,-4669,4834,-4718,-4817,-1617]],"properties":{"label":"olufleke"}},{"type":"Polygon","arcs":[[4835,1056,1057,1058,209,4836]],"properties":{"label":"pako"}},{"type":"Polygon","arcs":[[1658,4837,4838,-4830,-4100,-4099]],"properties":{"label":"luneflelubi"}},{"type":"Polygon","arcs":[[-3598,-3597,120,4839,1097,-3599]],"properties":{"label":"boitriesna"}},{"type":"Polygon","arcs":[[1035,4840,-4837,210,1059]],"properties":{"label":"sukanenear"}},{"type":"Polygon","arcs":[[1660,1661,4841,4842,-4838,1659]],"properties":{"label":"ibuflo"}},{"type":"Polygon","arcs":[[4085,4086,4843,783,784,4092]],"properties":{"label":"bosetale"}},{"type":"Polygon","arcs":[[4844,80,4845,-4826,-4659,4846]],"properties":{"label":"kesukobuan"}},{"type":"Polygon","arcs":[[4847,74,-3946,3952,-3926]],"properties":{"label":"arbukepei"}},{"type":"Polygon","arcs":[[4117,-4469,4848,-2967,-2353,-2333]],"properties":{"label":"suoopisu"}},{"type":"Polygon","arcs":[[79,-4845,4849,3913]],"properties":{"label":"gokobone"}},{"type":"Polygon","arcs":[[-973,-972,73,-4848,-3925,4850]],"properties":{"label":"leflopako"}},{"type":"Polygon","arcs":[[4851,3903,2465,2466,1974,4852]],"properties":{"label":"fufleflo"}},{"type":"Polygon","arcs":[[-1776,4853,4854,-4832,2472,-2415]],"properties":{"label":"bulu"}},{"type":"Polygon","arcs":[[3298,-4545,-3225,-3224,770,4855]],"properties":{"label":"naarflofobu"}},{"type":"Polygon","arcs":[[1662,56,4856,4857,-4842]],"properties":{"label":"eskyu"}},{"type":"Polygon","arcs":[[-975,-974,-4851,-3924,4858,3951]],"properties":{"label":"onake"}},{"type":"Polygon","arcs":[[4859,-4627,-3240,-3239,3391,4860]],"properties":{"label":"nepebi"}},{"type":"Polygon","arcs":[[-460,-459,-458,4861,4862,4863]],"properties":{"label":"ies"}},{"type":"Polygon","arcs":[[-1517,2246,1454,-3802,3806,-4834]],"properties":{"label":"lelu"}},{"type":"Polygon","arcs":[[3296,3297,-4856,771,772,3300]],"properties":{"label":"bukyafleeska"}},{"type":"Polygon","arcs":[[-3475,-3961,-2440,-2439,-1273,4864]],"properties":{"label":"fuargo"}},{"type":"Polygon","arcs":[[3950,-4859,-3928,-1664,1304,3953]],"properties":{"label":"sekaarnozo"}},{"type":"Polygon","arcs":[[-4840,121,-3811,-2782,1096]],"properties":{"label":"okyaonazo"}},{"type":"Polygon","arcs":[[-251,-250,-249,-4523,-4482,-3654]],"properties":{"label":"pepi"}},{"type":"Polygon","arcs":[[674,-3476,-4865,-1272,672,673]],"properties":{"label":"naleesfu"}},{"type":"Polygon","arcs":[[-4691,-1108,-4490,-4529,-4567,4865]],"properties":{"label":"fleoi"}},{"type":"Polygon","arcs":[[3991,-2192,-2191,-2190,-3746,4866]],"properties":{"label":"pepimaar"}},{"type":"Polygon","arcs":[[4067,4867,-743,-742,-741,4868]],"properties":{"label":"lego"}},{"type":"Polygon","arcs":[[-476,4869,-4147,4870,624,625]],"properties":{"label":"trita"}},{"type":"Polygon","arcs":[[-2981,4871,4121,-2331,-2537,-3631]],"properties":{"label":"ota"}},{"type":"Polygon","arcs":[[4872,4873,4874,-3297,3514,4875]],"properties":{"label":"gokyatriseka"}},{"type":"Polygon","arcs":[[-4430,3990,-4867,-3745,3992,3993]],"properties":{"label":"noletri"}},{"type":"Polygon","arcs":[[189,-953,4876,-4792]],"properties":{"label":"kanosupe"}},{"type":"Polygon","arcs":[[4877,62,-3300,-3299,-3298,-4875]],"properties":{"label":"bose"}},{"type":"Polygon","arcs":[[743,-4829,-4782,-3673,-4639,742]],"properties":{"label":"lepe"}},{"type":"Polygon","arcs":[[4000,4878,-1660,-1659,-1658,4879]],"properties":{"label":"kotri"}},{"type":"Polygon","arcs":[[4880,2566,-823,-417,-4412,4881]],"properties":{"label":"arpabuzoo"}},{"type":"Polygon","arcs":[[-1059,4882,-2857,208]],"properties":{"label":"kyakyakofusu"}},{"type":"Polygon","arcs":[[-4243,-4459,-4573,525,-4245,-4244]],"properties":{"label":"kokyuse"}},{"type":"Polygon","arcs":[[61,-4878,-4874,4883]],"properties":{"label":"pasu"}},{"type":"Polygon","arcs":[[2950,3999,-4880,-1657,-1156,-2260]],"properties":{"label":"kepenenama"}},{"type":"Polygon","arcs":[[4884,4885,4886,-4076,4887,-535]],"properties":{"label":"bofugoko"}},{"type":"Polygon","arcs":[[4888,4030,-3886,-3885,-3884,4031]],"properties":{"label":"flesueslu"}},{"type":"Polygon","arcs":[[60,-4884,-4873,4889,3513]],"properties":{"label":"okyataokya"}},{"type":"Polygon","arcs":[[-1513,2193,-2012,4890,-4559,-1508]],"properties":{"label":"kopeko"}},{"type":"Polygon","arcs":[[3859,4891,4892,3858,-3092,-3091]],"properties":{"label":"nokaesbu"}},{"type":"Polygon","arcs":[[4237,-4615,528,529,-1933,4893]],"properties":{"label":"kyukopine"}},{"type":"Polygon","arcs":[[4894,4203,4895,3052,-1730,-868]],"properties":{"label":"tagonokole"}},{"type":"Polygon","arcs":[[-2002,-2001,4029,-4889,4032,-4618]],"properties":{"label":"anarsipeflo"}},{"type":"Polygon","arcs":[[-574,-573,1750,4245,4896,-575]],"properties":{"label":"zobizotrio"}},{"type":"Polygon","arcs":[[3512,-4890,-4876,3515,776,4897]],"properties":{"label":"flear"}},{"type":"Polygon","arcs":[[2480,3556,4898,181]],"properties":{"label":"zope"}},{"type":"Polygon","arcs":[[4065,4066,-4869,-740,-739,4071]],"properties":{"label":"nakyaflobio"}},{"type":"Polygon","arcs":[[-474,4899,4900,-4143,-4870,-475]],"properties":{"label":"panopakyu"}},{"type":"Polygon","arcs":[[-989,-4694,3832,-4708,1294,1295]],"properties":{"label":"pale"}},{"type":"Polygon","arcs":[[3744,3745,-2189,-4604,4901,3743]],"properties":{"label":"flelu"}},{"type":"Polygon","arcs":[[4902,3968,-1800,-1799,4903,1862]],"properties":{"label":"bui"}},{"type":"Polygon","arcs":[[612,613,-1791,3481,-4706,611]],"properties":{"label":"gosikogo"}},{"type":"Polygon","arcs":[[-4418,-2476,4904,1969,1970,-4419]],"properties":{"label":"annefu"}},{"type":"Polygon","arcs":[[-4668,-1738,-1737,4905,-4719,-4835]],"properties":{"label":"takyu"}},{"type":"Polygon","arcs":[[15,4240,4241,4242,4906]],"properties":{"label":"kyukyunoarke"}},{"type":"Polygon","arcs":[[-4610,2479,2154,2155,-4661,3560]],"properties":{"label":"gomafuarkyu"}},{"type":"Polygon","arcs":[[4907,2430,2431,2432,-3658,-4600]],"properties":{"label":"anesbukyues"}},{"type":"Polygon","arcs":[[-3920,3983,4908,-2854,-4883,-1058]],"properties":{"label":"peio"}},{"type":"Polygon","arcs":[[3742,-4902,-4605,-1917,-2168,-1011]],"properties":{"label":"flegoes"}},{"type":"Polygon","arcs":[[3778,-4823,-4785,3776,4909,2190]],"properties":{"label":"susu"}},{"type":"Polygon","arcs":[[452,4910,-4698,449,450,451]],"properties":{"label":"bikofoi"}},{"type":"Polygon","arcs":[[4911,1054,1055,-4836,-4841,1036]],"properties":{"label":"espeesespa"}},{"type":"Polygon","arcs":[[-4891,-2011,-2010,-2009,-3066,-4560]],"properties":{"label":"bufuifu"}},{"type":"Polygon","arcs":[[4023,4024,4025,-4697,-4911,453]],"properties":{"label":"fufuno"}},{"type":"Polygon","arcs":[[-2977,-2971,1053,-4912,1037,3585]],"properties":{"label":"mabu"}},{"type":"Polygon","arcs":[[-472,-471,3099,4912,-4900,-473]],"properties":{"label":"arke"}},{"type":"Polygon","arcs":[[-2838,4236,-4894,-1932,-1931,-1906]],"properties":{"label":"bikoar"}},{"type":"Polygon","arcs":[[3969,4913,3967,-4903,1863,1864]],"properties":{"label":"kagonenaes"}},{"type":"Polygon","arcs":[[-4115,4914,4915,165,1397,-3989]],"properties":{"label":"bokona"}},{"type":"Polygon","arcs":[[330,-4494,-2851,-4770,4008,2887]],"properties":{"label":"bipi"}},{"type":"Polygon","arcs":[[-4463,-3164,-328,-327,4916,-3899]],"properties":{"label":"taar"}},{"type":"Polygon","arcs":[[-3823,-4013,1616,1617,1618,-3853]],"properties":{"label":"bibikyu"}},{"type":"Polygon","arcs":[[4917,-2005,-4029,-4028,-4027,-4026]],"properties":{"label":"gobibimafle"}},{"type":"Polygon","arcs":[[1861,-4904,-1798,-1797,1849,-2890]],"properties":{"label":"obi"}},{"type":"Polygon","arcs":[[3984,-2655,2865,2866,-2855,-4909]],"properties":{"label":"buesflo"}},{"type":"Polygon","arcs":[[-3067,-2007,-2006,-4918,-4025,4918]],"properties":{"label":"fukyu"}},{"type":"Polygon","arcs":[[2189,-4910,3777,-1330,2187,2188]],"properties":{"label":"triarsebi"}},{"type":"Polygon","arcs":[[14,-4907,4243,-4614,4239,-4105]],"properties":{"label":"pasetakyu"}},{"type":"Polygon","arcs":[[4919,2686,-1361,-1360,4920,2676]],"properties":{"label":"luselule"}},{"type":"Polygon","arcs":[[4921,-3068,-4919,-4024,454,455]],"properties":{"label":"matri"}},{"type":"Polygon","arcs":[[-4783,1655,778,779,4922,4088]],"properties":{"label":"goko"}},{"type":"Polygon","arcs":[[54,4002,-1661,-4879,4001]],"properties":{"label":"kyafle"}},{"type":"Polygon","arcs":[[2675,-4921,-1359,-1358,-1357,-4123]],"properties":{"label":"sebi"}},{"type":"Polygon","arcs":[[-1511,-4561,-3069,-4922,456,457]],"properties":{"label":"luta"}},{"type":"Polygon","arcs":[[4087,-4923,780,781,782,-4844]],"properties":{"label":"iflokyubo"}},{"type":"Polygon","arcs":[[-4913,3100,3101,3102,-4144,-4901]],"properties":{"label":"arpeigo"}},{"type":"Polygon","arcs":[[2845,-1206,4923,-3770,4129,2844]],"properties":{"label":"kobogo"}},{"type":"Polygon","arcs":[[-4294,4924,4925,2437,-1281,-1280]],"properties":{"label":"koona"}},{"type":"Polygon","arcs":[[4926,-4110,4116,555,2652,4927]],"properties":{"label":"arlutatama"}},{"type":"Polygon","arcs":[[3963,3964,3965,3966,-4914,3970]],"properties":{"label":"peflekafle"}},{"type":"Polygon","arcs":[[277,278,279,-4047,-3255,-4060]],"properties":{"label":"kesikase"}},{"type":"Polygon","arcs":[[4928,-4080,-4079,-4078,-4077,-4887]],"properties":{"label":"gotrianlees"}},{"type":"Polygon","arcs":[[-2842,3038,4929,-1019,1671,1672]],"properties":{"label":"fopa"}},{"type":"Polygon","arcs":[[1519,4115,-4111,-4927,4930,-1044]],"properties":{"label":"espaarbina"}},{"type":"Polygon","arcs":[[-3109,1937,-4081,-4929,-4886,4931]],"properties":{"label":"lukokasu"}},{"type":"Polygon","arcs":[[3039,4932,3525,3526,-1020,-4930]],"properties":{"label":"kei"}},{"type":"Polygon","arcs":[[-1045,-4931,-4928,2653,2654,2655]],"properties":{"label":"ine"}},{"type":"Polygon","arcs":[[4933,-3110,-4932,-4885,-534,-533]],"properties":{"label":"pape"}},{"type":"Polygon","arcs":[[-486,-485,3523,3524,-4933,3040]],"properties":{"label":"naflenapapi"}},{"type":"Polygon","arcs":[[737,738,4125,4126,4934,-1204]],"properties":{"label":"taosise"}},{"type":"Polygon","arcs":[[-530,4935,-3111,-4934,-532,-531]],"properties":{"label":"oleipafu"}},{"type":"Polygon","arcs":[[4936,-236,-235,4937,4938,3050]],"properties":{"label":"fuogogokyu"}},{"type":"Polygon","arcs":[[-4794,-4090,-4089,-4088,-4087,-4137]],"properties":{"label":"supifona"}},{"type":"Polygon","arcs":[[-1205,-4935,4127,4128,-3771,-4924]],"properties":{"label":"iko"}},{"type":"Polygon","arcs":[[-4616,-4471,4939,4940,-4925,-4293]],"properties":{"label":"tagoanbizo"}},{"type":"Polygon","arcs":[[-528,4102,4103,-3107,-4936,-529]],"properties":{"label":"kyutana"}},{"type":"Polygon","arcs":[[-484,-483,-482,4941,4942,-3524]],"properties":{"label":"trileta"}},{"type":"Polygon","arcs":[[320,321,4943,-3964,4944,1848]],"properties":{"label":"kefu"}},{"type":"Polygon","arcs":[[-967,-966,-965,4945,-3973,4083]],"properties":{"label":"flokoan"}},{"type":"Polygon","arcs":[[4006,-4771,-1573,-1572,2250,4010]],"properties":{"label":"fuarsita"}},{"type":"Polygon","arcs":[[-3813,-3805,4946,966,967,-4085]],"properties":{"label":"sukokyubipi"}},{"type":"Polygon","arcs":[[-4942,-481,3041,3042,4137,4947]],"properties":{"label":"sikekyu"}},{"type":"Polygon","arcs":[[-4324,4948,-4690,3288,1765,4949]],"properties":{"label":"kozo"}},{"type":"Polygon","arcs":[[-4148,533,534,535,3018,4950]],"properties":{"label":"sebokepeno"}},{"type":"Polygon","arcs":[[4951,-4149,-4951,3019,4160,-4576]],"properties":{"label":"bulemanolu"}},{"type":"Polygon","arcs":[[-3525,-4943,-4948,4138,4952,-3526]],"properties":{"label":"kyaleooan"}},{"type":"Polygon","arcs":[[-3527,-4953,4139,-1023,-1022,-1021]],"properties":{"label":"anneflefuar"}},{"type":"Polygon","arcs":[[-3266,-4314,4953,4954,4955,4956]],"properties":{"label":"antriarfui"}},{"type":"Polygon","arcs":[[-4346,93,-4374,4957]],"properties":{"label":"ileko"}},{"type":"Polygon","arcs":[[3015,3016,-4150,-4952,-4575,9]],"properties":{"label":"nai"}},{"type":"Polygon","arcs":[[-4862,-457,-456,4958,4959,4960]],"properties":{"label":"arfoko"}},{"type":"Polygon","arcs":[[-4740,-4224,-4578,2424,4961,4962]],"properties":{"label":"siobuko"}},{"type":"Polygon","arcs":[[-4941,4963,-4803,2435,2436,-4926]],"properties":{"label":"annefuian"}},{"type":"Polygon","arcs":[[-1627,-1626,-2803,4964,4965,-1628]],"properties":{"label":"kekyuflo"}},{"type":"Polygon","arcs":[[4966,4967,-4853,1975,-4833,-4855]],"properties":{"label":"gokyaboesflo"}},{"type":"Polygon","arcs":[[3664,3665,1836,4968,-3652,-4761]],"properties":{"label":"bikyufu"}},{"type":"Polygon","arcs":[[1275,1276,4969,4120,-4872,-2980]],"properties":{"label":"kanokya"}},{"type":"Polygon","arcs":[[1847,-4945,-3971,-3970,1865,1866]],"properties":{"label":"bigozofobo"}},{"type":"Polygon","arcs":[[3242,1556,1557,4061,4970,3241]],"properties":{"label":"butrifufle"}},{"type":"Polygon","arcs":[[-869,1729,1730,-1717,-4752,4971]],"properties":{"label":"nopaarbian"}},{"type":"Polygon","arcs":[[-1629,-4966,4972,4973,1727,1728]],"properties":{"label":"kyanazo"}},{"type":"Polygon","arcs":[[-4877,-952,3814,-4774,-4768,-4793]],"properties":{"label":"letrifuse"}},{"type":"Polygon","arcs":[[-4183,-2516,-2995,4974,4975,4976]],"properties":{"label":"kaarpabino"}},{"type":"Polygon","arcs":[[-4248,-4325,-4950,1766,-3281,-4249]],"properties":{"label":"pipepeleta"}},{"type":"Polygon","arcs":[[1577,3390,3317,-4626,4977,-4519]],"properties":{"label":"buleigotri"}},{"type":"Polygon","arcs":[[4978,4979,4980,435,-3888,4254]],"properties":{"label":"kyakya"}},{"type":"Polygon","arcs":[[-4974,4981,4982,-3706,1725,1726]],"properties":{"label":"noflesebo"}},{"type":"Polygon","arcs":[[-3804,4983,2791,2792,965,-4947]],"properties":{"label":"zozono"}},{"type":"Polygon","arcs":[[4984,4985,1066,4986,-3707,-4983]],"properties":{"label":"flei"}},{"type":"Polygon","arcs":[[2447,1239,1240,1241,2448,4987]],"properties":{"label":"taifopi"}},{"type":"Polygon","arcs":[[-3020,-3019,536,4988,-3942,-3021]],"properties":{"label":"pefose"}},{"type":"Polygon","arcs":[[-4959,-455,-454,-453,-2955,4989]],"properties":{"label":"sunoflese"}},{"type":"Polygon","arcs":[[-3569,4990,4202,-4895,-867,-866]],"properties":{"label":"sisu"}},{"type":"Polygon","arcs":[[-4270,4991,4992,1110,-4215,-4251]],"properties":{"label":"pegofule"}},{"type":"Polygon","arcs":[[-4206,2446,-4988,2449,2450,-4220]],"properties":{"label":"sisi"}},{"type":"Polygon","arcs":[[-4589,4192,170,4993]],"properties":{"label":"kobuko"}},{"type":"Polygon","arcs":[[-4989,537,4187,-3506,4188,-3943]],"properties":{"label":"sisebifu"}},{"type":"Polygon","arcs":[[1456,1457,4994,2790,-4984,-3803]],"properties":{"label":"pefuinoma"}},{"type":"Polygon","arcs":[[229,230,1071,-3821,4995,228]],"properties":{"label":"noarkopi"}},{"type":"Polygon","arcs":[[3150,-1924,2194,2195,428,4996]],"properties":{"label":"essetazoka"}},{"type":"Polygon","arcs":[[-4498,-4590,-4994,171,-4516]],"properties":{"label":"pafleine"}},{"type":"Polygon","arcs":[[3148,3149,-4997,429,430,4196]],"properties":{"label":"pakenago"}},{"type":"Polygon","arcs":[[-4198,1348,4997,4208,-514,-513]],"properties":{"label":"kaokyalu"}},{"type":"Polygon","arcs":[[1938,4998,-3123,4999,4079,4080]],"properties":{"label":"pabopisubi"}},{"type":"Polygon","arcs":[[1752,1753,5000,-4687,-4949,-4323]],"properties":{"label":"esestrigo"}},{"type":"Polygon","arcs":[[3491,1963,827,-4565,-3128,-4612]],"properties":{"label":"kyufose"}},{"type":"Polygon","arcs":[[1349,1350,1351,5001,4207,-4998]],"properties":{"label":"kyuno"}},{"type":"Polygon","arcs":[[3146,3147,-4197,431,432,433]],"properties":{"label":"kyumakeessi"}},{"type":"Polygon","arcs":[[-5002,1352,4209,4210,4211,4212]],"properties":{"label":"inepi"}},{"type":"Polygon","arcs":[[-462,-461,-4864,5002,-4050,1390]],"properties":{"label":"sinaestrizo"}},{"type":"Polygon","arcs":[[5003,-4960,-4990,-2954,4295,5004]],"properties":{"label":"boan"}},{"type":"Polygon","arcs":[[-1422,-1421,-4815,-4569,-3840,-3839]],"properties":{"label":"oeso"}},{"type":"Polygon","arcs":[[-4470,-359,-358,-4802,-4964,-4940]],"properties":{"label":"paarsekyu"}},{"type":"Polygon","arcs":[[5005,5006,-4548,5007,5008,-3339]],"properties":{"label":"taope"}},{"type":"Polygon","arcs":[[-3155,5009,5010,517,3171,-3156]],"properties":{"label":"kyuna"}},{"type":"Polygon","arcs":[[3238,5011,1563,5012,3236,3237]],"properties":{"label":"sutribose"}},{"type":"Polygon","arcs":[[5013,-1396,-1395,-4179,-4151,-3966]],"properties":{"label":"pakebolese"}},{"type":"Polygon","arcs":[[5014,-4176,-3976,-3935,1217,5015]],"properties":{"label":"maansi"}},{"type":"Polygon","arcs":[[3049,-4939,5016,-230,-1583,-1719]],"properties":{"label":"estapinear"}},{"type":"Polygon","arcs":[[1458,1459,-853,2788,2789,-4995]],"properties":{"label":"patapakyu"}},{"type":"Polygon","arcs":[[-3340,-5009,5017,984,-3342,-3341]],"properties":{"label":"kobu"}},{"type":"Polygon","arcs":[[853,5018,-3810,-3490,851,852]],"properties":{"label":"ile"}},{"type":"Polygon","arcs":[[5019,-4812,-4809,1995,3857,-4893]],"properties":{"label":"bokyu"}},{"type":"Polygon","arcs":[[1079,1080,5020,5021,3410,1078]],"properties":{"label":"floluta"}},{"type":"Polygon","arcs":[[-2727,756,2264,2265,2266,-4735]],"properties":{"label":"anarkamaka"}},{"type":"Polygon","arcs":[[-5008,-4547,981,982,983,-5018]],"properties":{"label":"lufufobo"}},{"type":"Polygon","arcs":[[855,-3734,-3765,-3809,-5019,854]],"properties":{"label":"bukoko"}},{"type":"Polygon","arcs":[[-3551,2489,472,473,-4593,-4611]],"properties":{"label":"bigo"}},{"type":"Polygon","arcs":[[-4965,-2802,5022,-4985,-4982,-4973]],"properties":{"label":"arflomake"}},{"type":"Polygon","arcs":[[19,510,5023,-3153,5024]],"properties":{"label":"leno"}},{"type":"Polygon","arcs":[[81,-3911,-3862,-4827,-4846]],"properties":{"label":"naflobubolu"}},{"type":"Polygon","arcs":[[-2423,5025,-4267,-4546,-5007,5026]],"properties":{"label":"kyale"}},{"type":"Polygon","arcs":[[18,-5025,-3152,4226,4227]],"properties":{"label":"fopesu"}},{"type":"Polygon","arcs":[[-4745,-1726,-1725,-1724,977,3209]],"properties":{"label":"fuzofu"}},{"type":"Polygon","arcs":[[-5003,-4863,-4961,-5004,5027,-4051]],"properties":{"label":"ogoartriko"}},{"type":"Polygon","arcs":[[3608,-724,-723,5028,-4621,3610]],"properties":{"label":"kobogoflobi"}},{"type":"Polygon","arcs":[[-3214,-3213,-3212,-4265,-5026,-2422]],"properties":{"label":"kyabogolu"}},{"type":"Polygon","arcs":[[87,-3192,-3179,5029,5030]],"properties":{"label":"neesogo"}},{"type":"Polygon","arcs":[[1353,1354,5031,5032,5033,-4210]],"properties":{"label":"arse"}},{"type":"Polygon","arcs":[[-5013,1564,160,5034,3235]],"properties":{"label":"espimaita"}},{"type":"Polygon","arcs":[[322,323,-1397,-5014,-3965,-4944]],"properties":{"label":"kyupies"}},{"type":"Polygon","arcs":[[-4857,57,1648,5035]],"properties":{"label":"peflobubina"}},{"type":"Polygon","arcs":[[-4938,-234,-233,-232,-231,-5017]],"properties":{"label":"esbifle"}},{"type":"Polygon","arcs":[[5036,-5030,-3182,-3147,434,-4981]],"properties":{"label":"pipebu"}},{"type":"Polygon","arcs":[[1355,1356,-3030,-4736,5037,-5032]],"properties":{"label":"kyunano"}},{"type":"Polygon","arcs":[[1081,1082,126,-4804,5038,-5021]],"properties":{"label":"opisi"}},{"type":"Polygon","arcs":[[1756,5039,4217,4218,3248,3249]],"properties":{"label":"pitasuma"}},{"type":"Polygon","arcs":[[3873,5040,-1758,-1757,-1756,-4818]],"properties":{"label":"tata"}},{"type":"Polygon","arcs":[[5041,-433,2565,-4881,5042,5043]],"properties":{"label":"kyuse"}},{"type":"Polygon","arcs":[[107,-3220,-1759,-5041,3874]],"properties":{"label":"leta"}},{"type":"Polygon","arcs":[[5044,86,-5031,-5037,-4980,5045]],"properties":{"label":"pamapeke"}},{"type":"Polygon","arcs":[[-4969,1837,-2485,-2484,-2631,-3653]],"properties":{"label":"kafu"}},{"type":"Polygon","arcs":[[-5024,511,512,5046,-5010,-3154]],"properties":{"label":"koesmazo"}},{"type":"Polygon","arcs":[[-1115,5047,-4568,-3534,241,242]],"properties":{"label":"tripafu"}},{"type":"Polygon","arcs":[[-1996,-1995,85,-5045,5048,-1997]],"properties":{"label":"mabupeoar"}},{"type":"Polygon","arcs":[[-4052,-5028,-5005,4296,-4155,-4154]],"properties":{"label":"flefupipa"}},{"type":"Polygon","arcs":[[3074,5049,5050,-4229,2090,2091]],"properties":{"label":"trisepibubu"}},{"type":"Polygon","arcs":[[-1546,-4275,704,705,706,5051]],"properties":{"label":"fleluseo"}},{"type":"Polygon","arcs":[[-1998,-5049,-5046,-4979,4255,-1999]],"properties":{"label":"pibuma"}},{"type":"Polygon","arcs":[[-4828,-4787,-745,-744,-4868,4068]],"properties":{"label":"kobukyu"}},{"type":"Polygon","arcs":[[-4778,-970,-4177,-5015,5052,5053]],"properties":{"label":"lukearzose"}},{"type":"Polygon","arcs":[[3234,-5035,161,5054]],"properties":{"label":"flozoke"}},{"type":"Polygon","arcs":[[-2513,-2512,-878,5055,4040,-4651]],"properties":{"label":"kyai"}},{"type":"Polygon","arcs":[[227,-4996,-3825,-3852,4179,226]],"properties":{"label":"ari"}},{"type":"Polygon","arcs":[[-2329,-1547,-5052,707,708,3206]],"properties":{"label":"sekono"}},{"type":"Polygon","arcs":[[5056,-493,-492,4270,4271,-2684]],"properties":{"label":"iotrinezo"}},{"type":"Polygon","arcs":[[-4871,-4146,5057,-4390,622,623]],"properties":{"label":"floanoka"}},{"type":"Polygon","arcs":[[-576,-4897,4246,4247,5058,-577]],"properties":{"label":"kanono"}},{"type":"Polygon","arcs":[[-710,-709,5059,3363,5060,-4439]],"properties":{"label":"osuanma"}},{"type":"Polygon","arcs":[[-450,-449,5061,5062,2084,2085]],"properties":{"label":"talekyuesta"}},{"type":"Polygon","arcs":[[4075,4076,5063,-541,-540,4081]],"properties":{"label":"subi"}},{"type":"Polygon","arcs":[[1016,-3934,-3923,-2905,-4443,1015]],"properties":{"label":"nogo"}},{"type":"Polygon","arcs":[[3861,3862,-4813,-5020,-4892,3860]],"properties":{"label":"lusepinabo"}},{"type":"Polygon","arcs":[[-708,-707,-1543,3361,3362,-5060]],"properties":{"label":"nakyaleta"}},{"type":"Polygon","arcs":[[-448,-447,-446,5064,5065,-5062]],"properties":{"label":"sipipeka"}},{"type":"Polygon","arcs":[[3886,3887,436,437,5066,3885]],"properties":{"label":"iannale"}},{"type":"Polygon","arcs":[[-4633,-4655,-2130,-2129,2289,-4640]],"properties":{"label":"pianbu"}},{"type":"Polygon","arcs":[[-5065,-445,3928,3929,3930,5067]],"properties":{"label":"nopa"}},{"type":"Polygon","arcs":[[3884,-5067,438,439,440,5068]],"properties":{"label":"pakanago"}},{"type":"Polygon","arcs":[[3076,-4184,-4977,5069,-5050,3075]],"properties":{"label":"tapezo"}},{"type":"Polygon","arcs":[[-2560,-2559,3641,-4648,3640,-3632]],"properties":{"label":"bobobukale"}},{"type":"Polygon","arcs":[[-5063,-5066,-5068,3931,3932,2083]],"properties":{"label":"fopipi"}},{"type":"Polygon","arcs":[[3882,3883,-5069,441,442,3888]],"properties":{"label":"pazosinota"}},{"type":"Polygon","arcs":[[3232,3233,-5055,162,4063]],"properties":{"label":"paono"}},{"type":"Polygon","arcs":[[3240,-4971,4062,1562,-5012,3239]],"properties":{"label":"nokyanapeta"}},{"type":"Polygon","arcs":[[4204,-3468,-237,-4937,3051,-4896]],"properties":{"label":"anpasiolu"}},{"type":"Polygon","arcs":[[-2789,-852,-851,5070,3891,2874]],"properties":{"label":"kozopapefu"}},{"type":"Polygon","arcs":[[4170,-1540,-1539,-1538,4171,5071]],"properties":{"label":"okeflese"}},{"type":"Polygon","arcs":[[1758,1759,1760,4216,-5040,1757]],"properties":{"label":"sitri"}},{"type":"Polygon","arcs":[[2681,2682,2683,2684,5072,2680]],"properties":{"label":"flolu"}},{"type":"Polygon","arcs":[[-4805,128,3056,5073]],"properties":{"label":"netatrino"}},{"type":"Polygon","arcs":[[265,266,111,5074,-4268,264]],"properties":{"label":"anflego"}},{"type":"Polygon","arcs":[[5075,4169,-5072,4172,5076,5077]],"properties":{"label":"nemaflepapa"}},{"type":"Polygon","arcs":[[2082,-3933,5078,-3141,-3140,-3139]],"properties":{"label":"takope"}},{"type":"Polygon","arcs":[[2679,-5073,2685,-4920,2677,2678]],"properties":{"label":"nobinole"}},{"type":"Polygon","arcs":[[-3364,-3363,4168,-5076,5079,-3365]],"properties":{"label":"fukakota"}},{"type":"Polygon","arcs":[[-3932,-3931,4305,-3073,-3142,-5079]],"properties":{"label":"anka"}},{"type":"Polygon","arcs":[[757,758,759,5080,-4436,-2265]],"properties":{"label":"lele"}},{"type":"Polygon","arcs":[[-3366,-5080,-5078,5081,-2902,-2901]],"properties":{"label":"antrinobo"}},{"type":"Polygon","arcs":[[-4219,-4290,-265,-264,5082,3247]],"properties":{"label":"zogoesfu"}},{"type":"Polygon","arcs":[[-5070,-4976,5083,-2990,-4230,-5051]],"properties":{"label":"supaflesi"}},{"type":"Polygon","arcs":[[5084,-870,-4972,-4751,5085,5086]],"properties":{"label":"nakokyakoo"}},{"type":"Polygon","arcs":[[-5082,-5077,4173,-1530,3022,-2903]],"properties":{"label":"flonaka"}},{"type":"Polygon","arcs":[[3246,-5083,-263,-262,-261,5087]],"properties":{"label":"sine"}},{"type":"Polygon","arcs":[[-1113,-4692,-4866,-4566,-5048,-1114]],"properties":{"label":"seeses"}},{"type":"Polygon","arcs":[[344,-4779,-5054,5088,-1944,343]],"properties":{"label":"lukaboiar"}},{"type":"Polygon","arcs":[[-3038,-3267,-4957,5089,5090,411]],"properties":{"label":"esnaolu"}},{"type":"Polygon","arcs":[[-5071,-850,-849,-848,2875,3892]],"properties":{"label":"kyafloarflema"}},{"type":"Polygon","arcs":[[3244,3245,-5088,-260,-259,3250]],"properties":{"label":"fotasiibi"}},{"type":"Polygon","arcs":[[5091,-4806,-5074,3057,3411,3412]],"properties":{"label":"kyuta"}},{"type":"Polygon","arcs":[[-5075,112,5092,5093,-4992,-4269]],"properties":{"label":"sigo"}},{"type":"Polygon","arcs":[[410,-5091,5094,407,408,409]],"properties":{"label":"masikyasuse"}},{"type":"Polygon","arcs":[[326,-2257,-2256,-2255,4304,325]],"properties":{"label":"sebi"}},{"type":"Polygon","arcs":[[-4444,-2908,-4754,2914,-694,-693]],"properties":{"label":"pitakyai"}},{"type":"Polygon","arcs":[[-5090,-4956,5095,405,406,-5095]],"properties":{"label":"foes"}},{"type":"Polygon","arcs":[[-4843,-4858,-5036,1649,-4831,-4839]],"properties":{"label":"nokonopapa"}},{"type":"Polygon","arcs":[[494,3661,3662,-4760,492,493]],"properties":{"label":"gobosipefle"}},{"type":"Polygon","arcs":[[-5081,760,-4359,573,-4434,-4437]],"properties":{"label":"pesugo"}},{"type":"Polygon","arcs":[[-1242,5096,-4329,-1498,-1244,-1243]],"properties":{"label":"kyusuanpaka"}},{"type":"Polygon","arcs":[[-4955,5097,402,403,404,-5096]],"properties":{"label":"gone"}},{"type":"Polygon","arcs":[[-520,-3036,-3276,-3120,-4999,1939]],"properties":{"label":"sinokya"}},{"type":"Polygon","arcs":[[-536,-4888,-4082,-539,-538,-537]],"properties":{"label":"flogo"}},{"type":"Polygon","arcs":[[-4975,-2994,-2993,-2992,-2991,-5084]],"properties":{"label":"pioflobu"}},{"type":"Polygon","arcs":[[2593,-4647,3639,-2219,1418,-4666]],"properties":{"label":"nefo"}},{"type":"Polygon","arcs":[[-4435,-463,-1391,-1390,-1125,-4432]],"properties":{"label":"espiantriko"}},{"type":"Polygon","arcs":[[1845,2326,4331,-4327,-5097,-1241]],"properties":{"label":"bipi"}},{"type":"Polygon","arcs":[[-4313,3270,98,401,-5098,-4954]],"properties":{"label":"zoanpi"}},{"type":"Polygon","arcs":[[5098,2409,2410,2411,2412,5099]],"properties":{"label":"silele"}},{"type":"Polygon","arcs":[[5100,5101,4157,5102,5103,5104]],"properties":{"label":"boke"}},{"type":"Polygon","arcs":[[-5000,-3122,714,715,5105,4078]],"properties":{"label":"onazoii"}},{"type":"Polygon","arcs":[[-5022,-5039,-4807,-5092,3413,3414]],"properties":{"label":"isulu"}},{"type":"Polygon","arcs":[[5106,4154,4155,4156,-5102,5107]],"properties":{"label":"paesogoka"}},{"type":"Polygon","arcs":[[4077,-5106,716,717,-542,-5064]],"properties":{"label":"arsies"}},{"type":"Polygon","arcs":[[-2395,-4741,-4963,5108,4337,4338]],"properties":{"label":"kyubu"}},{"type":"Polygon","arcs":[[-1127,-4053,4153,-5107,5109,1388]],"properties":{"label":"trikoke"}},{"type":"Polygon","arcs":[[-2801,-767,-766,1065,-4986,-5023]],"properties":{"label":"taflo"}},{"type":"Polygon","arcs":[[-4987,1067,1068,1069,4357,-3708]],"properties":{"label":"takya"}},{"type":"Polygon","arcs":[[-5109,-4962,2425,2426,5110,4336]],"properties":{"label":"nokepesuar"}},{"type":"Polygon","arcs":[[3305,3306,3307,5111,-3269,423]],"properties":{"label":"triarfloi"}},{"type":"Polygon","arcs":[[4194,5112,-3076,-3075,2092,5113]],"properties":{"label":"ikyuflo"}},{"type":"Polygon","arcs":[[4335,-5111,2427,2428,4339,5114]],"properties":{"label":"kopifuo"}},{"type":"Polygon","arcs":[[-5112,3308,3309,97,-3271,-3270]],"properties":{"label":"kabina"}},{"type":"Polygon","arcs":[[-3900,-4917,-326,-325,-324,-4587]],"properties":{"label":"kyubiseke"}},{"type":"Polygon","arcs":[[4333,4334,-5115,4340,4341,4342]],"properties":{"label":"bonegokao"}},{"type":"Polygon","arcs":[[5115,-5104,5116,3001,1381,1382]],"properties":{"label":"omafosu"}},{"type":"Polygon","arcs":[[-3403,4199,4200,4201,-4991,-3568]],"properties":{"label":"seke"}},{"type":"Polygon","arcs":[[-5094,5117,3196,3197,1109,-4993]],"properties":{"label":"arkokyufoo"}},{"type":"Polygon","arcs":[[-5103,4158,-2962,2999,3000,-5117]],"properties":{"label":"fleflene"}},{"type":"Polygon","arcs":[[5118,-899,-898,-897,-896,-4582]],"properties":{"label":"flekyubi"}},{"type":"Polygon","arcs":[[-4520,-4978,-4628,-4860,5119,-4479]],"properties":{"label":"lepafobugo"}},{"type":"Polygon","arcs":[[3442,-901,-900,-5119,-4581,-4521]],"properties":{"label":"siflemanapa"}},{"type":"Polygon","arcs":[[1823,1824,-3459,-2382,-4629,3574]],"properties":{"label":"fopeflene"}},{"type":"Polygon","arcs":[[-4480,-5120,-4861,3392,3393,3394]],"properties":{"label":"pikyuanfokyu"}},{"type":"Polygon","arcs":[[-3963,4193,-5114,2093,-2950,-2948]],"properties":{"label":"essugo"}},{"type":"Polygon","arcs":[[4388,-4387,-4613,-3478,-3477,615]],"properties":{"label":"esi"}},{"type":"Polygon","arcs":[[1277,1278,1279,-4467,4119,-4970]],"properties":{"label":"lekokyapi"}},{"type":"Polygon","arcs":[[1955,4371,-4368,-4334,5120,1954]],"properties":{"label":"pabibu"}},{"type":"Polygon","arcs":[[-3000,-2961,-2960,-2959,-2958,-4584]],"properties":{"label":"pikokyao"}},{"type":"Polygon","arcs":[[-4673,307,308,-4654,-4643,-4302]],"properties":{"label":"triokanakyu"}},{"type":"Polygon","arcs":[[-1523,-1522,-902,-3443,-3442,5121]],"properties":{"label":"kyuflookyubi"}},{"type":"Polygon","arcs":[[1953,-5121,-4343,5122,999,1000]],"properties":{"label":"gokekyusifle"}},{"type":"Polygon","arcs":[[-4440,-5061,3364,3365,-2900,-4453]],"properties":{"label":"sipa"}},{"type":"Polygon","arcs":[[113,5123,3195,-5118,-5093]],"properties":{"label":"gogoarka"}},{"type":"Polygon","arcs":[[-5056,-877,-876,-4456,4038,4039]],"properties":{"label":"malugookya"}},{"type":"Polygon","arcs":[[5124,-1295,-1294,5125,-4020,-4019]],"properties":{"label":"masikekoi"}},{"type":"Polygon","arcs":[[-1525,-1524,-5122,-3441,5126,5127]],"properties":{"label":"fusupafuo"}},{"type":"Polygon","arcs":[[-5123,-4342,5128,-4598,997,998]],"properties":{"label":"ies"}},{"type":"Polygon","arcs":[[-2196,5129,5130,-4506,426,427]],"properties":{"label":"lebu"}},{"type":"Polygon","arcs":[[-5033,-5038,-4737,-3544,-4542,5131]],"properties":{"label":"kyapile"}},{"type":"Polygon","arcs":[[-578,-5059,4248,-3280,-380,-379]],"properties":{"label":"mazo"}},{"type":"Polygon","arcs":[[5132,-5127,-3440,-3439,1142,5133]],"properties":{"label":"anflosikean"}},{"type":"Polygon","arcs":[[-4341,-4340,2429,-4908,-4599,-5129]],"properties":{"label":"bobu"}},{"type":"Polygon","arcs":[[-1923,-4182,-4348,5134,-5130,-2195]],"properties":{"label":"nalekyakoflo"}},{"type":"Polygon","arcs":[[-4773,3723,-4765,3726,-1314,-1313]],"properties":{"label":"sefletalufo"}},{"type":"Polygon","arcs":[[596,5135,-4667,1421,1422,1423]],"properties":{"label":"kyubipe"}},{"type":"Polygon","arcs":[[5136,5137,-5134,1143,1144,5138]],"properties":{"label":"lekafloarko"}},{"type":"Polygon","arcs":[[-5029,-722,-721,-720,-632,-4622]],"properties":{"label":"floka"}},{"type":"Polygon","arcs":[[-5135,-4347,-4958,-4373,-4507,-5131]],"properties":{"label":"fupiarse"}},{"type":"Polygon","arcs":[[-554,5139,-5139,1145,1146,1147]],"properties":{"label":"fomafu"}},{"type":"Polygon","arcs":[[4016,4017,4018,-4491,-4474,4022]],"properties":{"label":"kokatrifle"}},{"type":"Polygon","arcs":[[2589,2590,2591,-4665,-5136,597]],"properties":{"label":"sutase"}},{"type":"Polygon","arcs":[[-4637,-3237,-3236,-3235,-3234,-3287]],"properties":{"label":"ipekya"}},{"type":"Polygon","arcs":[[-1771,-4777,5140,-4967,-4854,-1775]],"properties":{"label":"anarkosi"}},{"type":"Polygon","arcs":[[3229,4376,5141,-5137,-5140,-553]],"properties":{"label":"pebolebi"}},{"type":"Polygon","arcs":[[995,-4601,-3659,992,993,994]],"properties":{"label":"kakoflogo"}},{"type":"Polygon","arcs":[[-991,-990,-1296,-5125,-4018,-4534]],"properties":{"label":"taar"}},{"type":"Polygon","arcs":[[114,5142,3194,-5124]],"properties":{"label":"kekonobopa"}},{"type":"Polygon","arcs":[[4377,-1526,-5128,-5133,-5138,-5142]],"properties":{"label":"fopeta"}},{"type":"Polygon","arcs":[[3557,3558,-4662,180,-4899]],"properties":{"label":"kafle"}},{"type":"Polygon","arcs":[[1499,1500,-494,-5057,-2683,-4685]],"properties":{"label":"flofleankena"}},{"type":"Polygon","arcs":[[5143,-1382,-1381,-1380,-4385,-4747]],"properties":{"label":"nafloflei"}},{"type":"Polygon","arcs":[[3912,-4850,-4847,-4658,-4602,2013]],"properties":{"label":"supa"}},{"type":"Polygon","arcs":[[-3696,-1606,-4449,-4728,-4725,-3691]],"properties":{"label":"tripeflookya"}},{"type":"Polygon","arcs":[[-4776,657,3902,-4852,-4968,-5141]],"properties":{"label":"nabo"}},{"type":"Polygon","arcs":[[4391,-1384,-1383,-5144,-4746,-4729]],"properties":{"label":"igo"}},{"type":"Polygon","arcs":[[-714,-713,-712,-4438,-4664,-715]],"properties":{"label":"trisearpe"}},{"type":"Polygon","arcs":[[5144,-5086,-4753,-3014,-831,-830]],"properties":{"label":"zofukya"}},{"type":"Polygon","arcs":[[1387,-5110,-5108,-5101,5145,1386]],"properties":{"label":"sio"}},{"type":"Polygon","arcs":[[-4468,1282,1283,1284,-2968,-4849]],"properties":{"label":"kafloneke"}},{"type":"Polygon","arcs":[[-3633,-3641,-3647,5146,5147,2115]],"properties":{"label":"antriluta"}},{"type":"Polygon","arcs":[[1255,1256,5148,3894,3895,-2231]],"properties":{"label":"siflopesutri"}},{"type":"Polygon","arcs":[[1261,5149,5150,-3161,-4462,1260]],"properties":{"label":"selu"}},{"type":"Polygon","arcs":[[302,303,-4674,-4300,5151,-2538]],"properties":{"label":"zofukobiflo"}},{"type":"Polygon","arcs":[[-825,-824,-871,-5085,5152,-826]],"properties":{"label":"nako"}},{"type":"Polygon","arcs":[[4395,-1570,-1569,5153,-4915,-4114]],"properties":{"label":"kyusenefulu"}},{"type":"Polygon","arcs":[[2114,-5148,5154,2111,2112,2113]],"properties":{"label":"naeskyu"}},{"type":"Polygon","arcs":[[-4145,3104,-1385,-4392,-4391,-5058]],"properties":{"label":"pipefle"}},{"type":"Polygon","arcs":[[1257,1258,3896,5155,3893,-5149]],"properties":{"label":"nebutanakyu"}},{"type":"Polygon","arcs":[[3466,-240,-239,-238,3467,3468]],"properties":{"label":"lukotaar"}},{"type":"Polygon","arcs":[[-5143,115,3198,3199,3200,3201]],"properties":{"label":"foluzobuna"}},{"type":"Polygon","arcs":[[-4906,-1736,-2173,2294,-2743,-4720]],"properties":{"label":"kobi"}},{"type":"Polygon","arcs":[[-5147,-3646,5156,2109,2110,-5155]],"properties":{"label":"ikyulepi"}},{"type":"Polygon","arcs":[[-548,5157,-5100,2413,-550,-549]],"properties":{"label":"anfu"}},{"type":"Polygon","arcs":[[-5156,3897,3898,3899,3900,3901]],"properties":{"label":"suna"}},{"type":"Polygon","arcs":[[-3645,4403,-727,-726,2108,-5157]],"properties":{"label":"nebootaan"}},{"type":"Polygon","arcs":[[2406,2407,2408,-5099,-5158,-547]],"properties":{"label":"lukosutri"}},{"type":"Polygon","arcs":[[-1654,3511,-4898,777,-1656,-1655]],"properties":{"label":"tribi"}},{"type":"Polygon","arcs":[[4307,5158,-4424,-3174,-3882,-3386]],"properties":{"label":"binaflokyao"}},{"type":"Polygon","arcs":[[-4946,-964,-963,-4058,4082,-3974]],"properties":{"label":"boanpa"}},{"type":"Polygon","arcs":[[-440,5159,5160,-4824,882,883]],"properties":{"label":"kyano"}},{"type":"Polygon","arcs":[[-1684,3694,-362,-361,-644,-3689]],"properties":{"label":"fopi"}},{"type":"Polygon","arcs":[[1385,-5146,-5105,-5116,1383,1384]],"properties":{"label":"flonopi"}},{"type":"Polygon","arcs":[[3140,3141,-3078,-3077,-5113,4195]],"properties":{"label":"noesflesi"}},{"type":"Polygon","arcs":[[-438,5161,-5044,5162,-5160,-439]],"properties":{"label":"koka"}},{"type":"Polygon","arcs":[[-2425,-2424,-5027,-5006,-3338,-2426]],"properties":{"label":"arsi"}},{"type":"Polygon","arcs":[[1263,1264,-2063,5163,-5150,1262]],"properties":{"label":"zopinole"}},{"type":"Polygon","arcs":[[-2539,-5152,-4304,-4278,947,4325]],"properties":{"label":"tama"}},{"type":"Polygon","arcs":[[2345,-3420,-1778,-1983,2343,2344]],"properties":{"label":"kebubies"}},{"type":"Polygon","arcs":[[-5154,-1568,-1567,-1566,164,-4916]],"properties":{"label":"oma"}},{"type":"Polygon","arcs":[[-436,-435,-434,-5042,-5162,-437]],"properties":{"label":"semapebubu"}},{"type":"Polygon","arcs":[[-4211,-5034,-5132,-4541,-684,-4253]],"properties":{"label":"lebikefufo"}},{"type":"Polygon","arcs":[[5164,-3249,-3248,-3247,-3246,-4689]],"properties":{"label":"nekyule"}},{"type":"Polygon","arcs":[[-2465,-2464,-2477,4417,5165,-2466]],"properties":{"label":"trigobosu"}},{"type":"Polygon","arcs":[[-5047,513,514,515,516,-5011]],"properties":{"label":"gotritrile"}},{"type":"Polygon","arcs":[[-2467,-5166,4418,1971,1972,1973]],"properties":{"label":"zoeskopekya"}},{"type":"Polygon","arcs":[[-5163,-5043,-4882,-4411,-4825,-5161]],"properties":{"label":"leflonoanar"}},{"type":"Polygon","arcs":[[-5126,-1293,-1292,-1291,1585,-4021]],"properties":{"label":"takesukyune"}},{"type":"Polygon","arcs":[[-5089,-5053,-5016,1218,1219,-1945]],"properties":{"label":"eskyabomalu"}},{"type":"Polygon","arcs":[[-827,-5153,-5087,-5145,-829,-828]],"properties":{"label":"mapipe"}},{"type":"Polygon","arcs":[[-1603,-1602,-1601,1831,1832,-4447]],"properties":{"label":"fonofle"}},{"type":"Polygon","arcs":[[-5164,-2062,-1961,-3170,-3162,-5151]],"properties":{"label":"paflobo"}},{"type":"Polygon","arcs":[[102,5166,4309,-4283]],"properties":{"label":"lekemaanpa"}},{"type":"Polygon","arcs":[[-4446,-3998,-4410,-3131,177]],"properties":{"label":"fuzokoko"}},{"type":"Polygon","arcs":[[1571,-3396,-3395,-4780,1569,1570]],"properties":{"label":"pibitako"}},{"type":"Polygon","arcs":[[-4484,-4524,-3054,-864,-863,-4451]],"properties":{"label":"anpakya"}},{"type":"Polygon","arcs":[[2272,-3845,5167,-375,-374,-373]],"properties":{"label":"nofusiflozo"}},{"type":"Polygon","arcs":[[-2475,5168,-4395,3046,1968,-4905]],"properties":{"label":"zoka"}},{"type":"Polygon","arcs":[[-5167,103,-4423,-5159,4308]],"properties":{"label":"pile"}},{"type":"Polygon","arcs":[[1754,1755,-3250,-5165,-4688,-5001]],"properties":{"label":"kobuflo"}},{"type":"Polygon","arcs":[[-3844,-3786,-4429,-377,-376,-5168]],"properties":{"label":"tanoflenego"}},{"type":"Polygon","arcs":[[664,665,-4320,-4394,-5169,-2474]],"properties":{"label":"suseanbues"}}]},"depth":{"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]],"properties":{"depth":0}},{"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]],"properties":{"depth":1}},{"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]],"properties":{"depth":2}},{"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],[-630,383,384,385,386,-252,-251,718,-255,-254],[840,281,282,283,212,213,214,215,216,839],[1005,799,800,801,-1013,1004],[389,390,391,392,393,-1014]],"properties":{"depth":3}},{"type":"Polygon","arcs":[[1035,1036,1037,1038,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,-1491,-1490,1247,1226,1227,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,1199,1069,1070,-972,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,-1225,-955,-954,-628,-627,155,156,157,158,159,160,161,162,163,164,165,1397,1398,-1493,-1492,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,1059],[-630,383,384,385,386,-252,-251,718,-255,-254],[1087,216,839,840,281,282,283,212,213,-1226,1085,1086],[-825,-824,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,1201,1202],[645,-1169,291,292,293,644],[-1172,-1171,-653,1318,1319,1320,1321,1322,-651,-1173],[-1194,-1198,-1197,-1196,677,-1195],[-1126,-1125,-1124,-1129,-1128,-1127],[-1207,-1206,-1205,-1204,-737,-736],[418,419,420,-1479,-1478,-821,-820,-819,-823,417],[1503,1504,1505,1506,-1513,-1512],[1005,799,800,801,-1013,1004],[1433,1434,1435,1436,-766,-765],[1493,1494,1495,1496,1167,-1092,-1091,-1090,-1089,-1094],[-510,-509,-508,-1465,-1464,390,391,392,393,-1014],[911,912,913,-1210,-1209,1333,1334,1428,1429,910],[1034,-893,-892,1341,1032,1033],[-1432,-1431,-1433,1425,1335,1336,1337,1338,1339,-1427],[1137,1138,1139,1140,-1224,1136],[-1211,701,702,703,704,1129,-700,-699,-698,-1212],[1040,-1095,809,810,811,1039]],"properties":{"depth":4}},{"type":"Polygon","arcs":[[1035,1036,1037,1038,1,2,3,4,5,6,7,8,9,10,-1907,-1906,-1905,12,13,14,15,16,17,18,19,20,21,22,23,-1491,-1490,1247,1226,1227,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,1152,1153,1154,-2260,-2259,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,-2278,-2289,1434,1435,1436,-766,1065,1066,1067,1068,1069,1070,-972,73,74,75,76,2247,2248,1504,1505,1506,-1513,-1512,-1503,-1502,78,79,80,81,82,83,84,85,86,87,88,89,-1925,-1924,-1923,-1922,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,2160,1760,1761,1762,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,-1225,-955,-954,-628,-627,155,156,157,158,159,160,161,162,163,164,165,1397,1398,-1493,1802,1803,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,1636,1637,1638,-1415,-1414,937,-2238,-2175,-2174,186,187,188,189,190,191,192,193,194,195,196,387,388,284,285,1030,1031,1032,1033,1034,-893,-892,-891,-890,-889,-888,-887,-886,-885,-921,201,1674,1488,203,204,205,206,207,208,209,210,1059],[-2159,1118,1948,1949,1950,1951,1952,1120,-261,-260],[-630,383,384,385,386,-252,-251,718,-255,-254],[-2209,-2208,-2210,-1792,-1796,-1795,1407,1408,1946,1947,-1405,-1404,-1403,1945,1095,1096,1097,1098,1099,1100,1101,-1992],[-1719,-1718,-1717,-1721,-1720,-1585,1731,1732,-838,1964,-1989,-2048,-2162,-2163,840,281,282,283,212,213,-1226,1085,1086,1087,216,217,1550,1549,222,223,224,225,226,227,228,-1583],[842,843,844,845,-2227,-1463,-1745,-1748,-1747,271,272,841],[-826,-825,-824,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,1201,1961,1962,1963,-827],[-1580,-1468,-1467,-1466,-1477,1867,1469,1470,1471,-1581],[-1452,2257,-1515,-1514,-1519,-1518,-1517,2246,-1454,-1453],[-373,-372,-371,-370,-2250,1440,1622,1721,1722,-374],[-343,-1223,-1222,-2167,-2166,-2165,-2164,1219,-1945,-1944],[-1958,-1961,-1960,332,333,-1959],[1860,1861,1862,1863,2227,1859],[941,2283,2280,2281,2282,940],[645,-1169,291,292,293,644],[-1172,-1171,-653,1318,1319,1320,1321,1322,-651,-1173],[-1778,-1777,-1776,-1775,1771,-1774],[-1252,-1251,-2179,-2234,-2233,-2232,-2231,-1255,-1254,-1253],[1676,1677,1678,1679,-1177,-1881,-1880,-1879,2051,2052,2053,2054,2055,-728,-727,-726,-725,-724,-723,-722,-721,-720,632,633,634,1675],[676,677,-1195,-2221,-2220,-2219,-1418,-1417,-1198,-2240,-2243,-2242,2104,2105,674,675],[-1126,-1125,-1124,-1129,-1128,-1127],[-1750,-1921,-1920,-1291,-1290,-1289,-1318,-1317,-468,-467],[748,749,1830,-2177,-873,747],[-1668,-1671,734,-1207,-1206,-1205,-1204,-737,-1670,-1669],[419,420,421,422,423,424,-1549,-1478,-821,-820,-819,-823,-417,-416,-415,-2280],[1595,1596,1597,1598,1599,1831,1832,1833,1834,1835,1836,1837,1838,1594],[2284,1842,1843,1844,503,504],[-1003,1060,2048,2049,1005,799,800,801,802,803,1607,1608],[1647,-1090,-1089,-1094,1493,1494,1495,1496,1167,-1092,-1991,-1990,-1163,-1162],[-1612,-2237,-2236,-2277,-1235,-1234,-1233,-1232,-1231,-1230,-1229,395,396,-1613],[-510,-509,-508,-1465,-1464,390,391,392,393,-1014],[1236,1237,1238,1239,1845,1846],[-1891,-1548,-1547,-1546,-1545,-686,-685,-684,-683,-1892],[-907,-906,1641,1642,-1927,912,913,-1210,-1209,1333,1334,1428,1429,-910,-909,-908],[1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,554,555,556,557,558,-2051,1482,1483,1484,1485,1132],[1532,1533,1534,1535,-2222,1531],[-1211,701,702,703,704,1129,-700,-699,-698,-1212],[1935,1936,1937,1938,1939,520],[1040,-1095,809,1687,1934,1927,1928,1929,811,1039],[-1047,-1046,-1045,-1044,-1043,-2075]],"properties":{"depth":5}},{"type":"MultiPolygon","arcs":[[[1035,1036,1037,1038,1,2,3,4,5,6,7,8,9,3015,3016,3017,-531,-1933,-1932,-1931,-1906,-2838,-2837,-2836,13,14,15,16,17,18,19,20,-3138,1347,1348,1349,1350,-2034,2672,2673,2674,2675,2676,2677,2678,3203,3204,-2030,-2029,-2028,-2027,23,-1491,-1490,-1247,-1246,-1245,-1244,-1243,2448,2449,2450,2451,26,27,28,29,30,31,-401,-400,-399,-398,-1613,-1612,-2237,3324,3323,1237,1238,1239,1845,1846,-1236,-1235,-1234,-1233,1840,1841,1842,1843,-2937,499,500,501,502,503,504,505,-806,-805,1607,2491,2492,2493,2494,2495,2496,2497,995,996,997,998,999,1000,1953,1954,1955,1956,-1694,-2396,-2395,-2394,-2406,-2405,784,785,786,787,-1166,-1165,-1164,-1163,-1162,1647,-1090,-1089,-1094,1493,1494,1495,-2756,-2755,792,793,-1065,-1064,-1063,-1062,2048,2049,1005,799,-2041,-2520,-2554,-2553,-2552,2127,2289,2290,2291,2292,-2607,-2606,-2605,-1703,-2523,2616,2617,2618,2619,2620,46,-1152,-1151,2696,3027,2659,48,49,1152,1153,-3004,-3003,-1158,-1157,-1156,-2260,2950,2951,2952,52,53,54,55,56,57,58,59,60,61,62,63,-3244,3226,3227,65,66,-2988,-2987,-3223,-3222,768,1624,-2803,-2802,-2801,-767,-766,1065,1066,1067,1068,1069,1070,-972,73,74,75,1296,1297,1298,1299,1300,-2858,-2861,-2860,-2750,-2749,-2625,3025,3026,-459,-1511,-1510,-1509,-1508,-1513,2193,2012,2013,2014,-1502,78,79,80,81,82,83,84,85,86,87,-3192,-3179,-3182,3147,3148,3149,3150,-1924,-1923,-1922,91,92,93,94,95,-3320,3309,97,98,401,402,-3169,100,101,102,103,104,-3175,-3174,-3178,-3177,-3176,106,107,-3220,1759,1760,1761,-3060,266,111,112,113,114,115,116,117,118,119,120,121,122,-2783,-2782,1096,1097,1098,1099,1100,1101,1102,1103,1104,-3353,-2208,-2210,-1792,-1796,-1795,1407,1408,1409,3008,3009,3010,3011,3012,-2804,-1122,124,125,126,127,128,3056,3057,3058,1734,-2173,2294,-2743,-2742,-2744,2302,2143,2366,2367,-2300,-2299,-2298,-2350,-2170,133,134,135,136,137,138,139,140,141,1083,1084,1085,-2551,-2550,-2549,-2548,-2119,219,220,221,222,223,224,225,226,227,228,-1583,-1719,3049,3050,3051,3052,1730,-1717,-1721,-2829,-2831,-2830,1732,-838,-837,-836,-2547,2691,2692,2693,2694,276,277,278,279,280,281,282,283,212,-3284,-3283,3315,2386,143,144,145,146,147,148,149,150,151,267,3314,1817,1818,1819,-3056,-3348,-3347,-275,-274,841,842,843,844,2687,-3125,-3130,-3129,-3128,-3127,-849,-848,-847,-2227,1437,1438,-961,-2365,-1748,2403,957,-2018,-2017,-2016,1213,1214,1215,1216,1217,1218,1219,-1945,-1944,343,344,345,346,2920,2921,2922,2923,2924,1283,1284,-2968,-2967,-2353,-2333,-2332,-2331,-2336,-2335,-2356,-2355,2059,2060,336,337,338,339,340,341,-1223,-1222,-2167,-3183,-1555,3316,3317,3318,3242,1556,2228,2229,-2165,3142,3143,3144,3145,156,157,-2648,1560,-2649,159,160,161,162,163,164,165,1397,1398,1399,1400,-1802,-1801,-1800,-3277,-3261,-3079,-3081,-1805,169,170,171,172,173,174,175,176,177,178,179,180,181,2480,2481,2482,-1414,937,-2238,-2175,-2174,186,187,188,189,190,191,192,193,194,195,196,387,388,284,285,1030,1031,1032,1033,1034,-893,-892,-891,-890,-889,-888,-887,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,554,555,2652,2653,2865,-3296,558,559,206,-2856,-2855,-2854,-2857,208,209,210,1059],[2390,-2380,-2379,-755,-754,-753,2391,-1828,-1827,-2177,-873,747,748,2815,2816,2262,-2722,-2729,-2728,-2727,756,757,758,759,760,761,-569,-568,-567,2389],[-259,3250,3287,3288,1765,1766,-3281,-3280,-380,-2847,-1467,-2868,-376,-375,-374,-373,-372,-2808,-2807,2762,2763,2764,-370,-369,-368,-367,3271,3272,-2342,-2341,-1446,-1445,-1444,-1443,-1442,1622,1721,-2869,-1477,-1476,-1878,-1877,-1876,-1875,-2375,-2374,-2378,-2377,-2376,-1873,-1872,-1871,-1870,-1869,1471,1472,384,385,386,-252,-251,-250,1115,-3194,-3193,1949,1950,1951,1952,1120,-261,-260],[-3354,3201,3194,3195,3196,-3355],[-2784,-2788,-2787,-2794,1076,1077,1078,-1413,-1412,-2785],[1071,1072,1073,1074,2796,-232],[-2140,1618,1619,1620,2306,2307,2308,2309,-2142,-2141],[-3257,-3256,-3255,-3254,-3259,-3258],[-826,-825,-824,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,1201,1961,1962,1963,-827],[-1452,-1451,-1450,-2741,2245,-1514,-1519,-1518,-1517,2246,-1454,-1453],[-2572,-2571,-2575,-2574,364,-2573],[-964,3303,2878,2873,2874,2789,2790,2791,2792,-965],[-3286,-3285,-1567,3231,3232,-3287],[1578,-2810,-2809,-2849,-2848,-2851,-2850,1575,1576,1577],[-1958,-1961,-3170,-3162,-3161,-3165,-3164,-328,-2257,2886,2887,330,331,332,333,-1959],[1861,1862,1863,1864,1865,2147,2636,-1858,-1857,-1856,-1855,-3208,3132,3133,3134,3135,-1853,-1852,-1851,-2890],[-2397,930,931,-2400,-2399,-2398],[941,942,943,944,945,2753,2280,2281,2282,940],[-2179,-2234,-2233,-2232,-2231,-1255,-1254,-3293,-3292,-3291,-3336,1972,3310,-2042,1977,1978,1979,306,307,308,309,1249],[2467,2468,2469,2470,2471,2472,-2415,-1776,-1775,1771,-1774,-1778,-1983,-1982,-1981,-298,-297,-2371,2344,2345,2346,2342,-1172,-1171,653,654,2599,2597,1319,1320,1321,-2597,-2596,-2578,-2577,-2580,2502,-648,-647,-1169,-291,-290,-2401,-2403,-2633,-2636,-2635,-2634,293,294,2942,-1913,-1912,-1911,-1910,-1909,-1908,-300],[589,921,922,2580,2939,2940,591,592,593,594,2885,2884,-2071,-2070,-2069,-2020,-2019,1812,-2704,2610,2611,2612,2613,2614,2615,2022,2023,2024,-2337,-2603,-2602,-2604,587,588],[-2710,-2709,2099,2100,2101,2102,-2720,-2098,2725,-2737,-2736,2586,2587,2588,661,2106],[-1986,-1985,3044,3045,3046,-1987],[-2981,-2980,-1275,2530,2531,-2982],[-1686,-1685,-1684,-1683,-1682,2745,-2664,-2663,-2666,-2462,-638,-637,-2933,2441,2442,639,640,-1687],[1676,1677,1678,1679,-1177,-1881,-1880,-2815,-2835,-2834,2843,2844,2845,-1206,-1205,-1204,-737,-1670,-1669,-1668,2972,2973,-1365,-1364,-733,-732,-731,-3119,-3118,-3358,-3357,-3356,-1886,-1885,-1884,-1883,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,632,633,634,1675],[676,677,-1195,-2221,-2220,-2219,-1418,-1417,-1198,-2240,-2243,-2242,2104,2105,674,675],[2113,2114,2115,2116,1899,3030,-2711,-2718,-2717,-600,-599,2589,2590,2591,2592,2593,2594,2112],[2561,2562,-2525,2555,2556,1787,1788,1892,1893,1894,1895,1896,1897,-2622],[612,613,614,615,616,617,618,619,620,621,622,2926,-2935,2202,2203,3184,3185,1027,1028,-3160,2925,625,476,477,478,479,3041,3042,3043,1025,-2207,-2206,2222,2223,2224,2225,2183,2184,-3025,-3024,610,611],[-2316,-2315,-2323,-1780,-1779,-1370,-2096,-2095,-2950,-2948,-2947,-2077,-1373,3105,1781,1782,1783,1784,-1890,-1889],[1386,-3361,3102,3103,3104,1385],[-1126,-1125,-1124,-1129,-1128,-1127],[-466,-465,-1316,-1315,-1314,2643,2644,2645,2639,2640,-1292,-1291,-1290,-1289,-1318,-1317,-468,-467],[-2626,980,981,-2629,-2628,-2627],[1595,1596,1597,1598,1599,1831,1832,1833,1834,1835,1836,1837,1838,1594],[-2630,-2647,-489,-488,2839,2840,3038,3039,3040,-486,-485,-484,2490,-2631],[-3029,-2759,-3115,-3116,689,1014,1015,1016,1017,1671,1672,1673,-1358,-3030],[517,3171,3156,-522,1935,-3108,-3107,-3111,-3110,-3109,1937,1938,1939,-520,-3036,-3276,-3120,-3123,-3122,-714,-713,-712,-711,-710,3206,-2329,-1547,-1546,-1545,-686,-685,-684,-683,-682,-681,-680,-679,516],[-2892,-2906,-2905,-2909,-2908,-2907,-2895,2911,-3072,2179,-3071,-3070,-2893,-2882,-2881,-1024,-1023,-2884],[-1329,-1919,-1918,-1917,-2168,1011,-908,-907,-906,1641,1642,1643,1644,1645,1646,913,-1210,-1209,1333,1334,1323,1324,1325,1326,-2813,-2812,-1331,-1330],[702,703,704,705,-1543,-1542,-1541,-1540,3312,3313,-3219,-3218,-3217,-1009,-1008,-1007,-696,-695,-694,-693,-692,-3206],[1534,1535,-2222,1531,1532,3294,-1522,902,903,-3312],[2412,2413,550,551,3229,3230],[1528,3022,2903,2410,3228,1527],[-546,-545,-544,-543,-542,-541,-2945,1928,1929,811,812,813,814,815,816,-2984,-2986,-2975,-2979,-2978,-2977,-2971,-1053,2861,2862,2863,2864,-1046,-1045,-1044,1519,1520,-808,-807,-548,-547],[-1628,-2918,-2917,-3274,-1634,-1633,-1632,-1631,-1630,-1629],[775,776,777,778,3208,1635],[-1652,-3189,-3191,-3190,-1654,-1653],[2081,2082,2083,2084,2085,450,-2732,-2735,-2766,-2769,-2768,2080],[-877,-876,-875,-2461,-2460,-2459,2931,2929,-2213,-2212,-2211,-880,-879,-878],[411,-3038,-3267,-3266,-3265,422,423,424,425,426,427,428,429,430,431,2565,2566,-823,-417,-416,-415,-414,-2215,-2708,-2707,410],[3094,3095,3096,-2003,-2002,-3137],[-3083,-3082,-2009,-3066,-3065,-3069,-3068,-3067,-2007,-3084],[-2661,2268,-2570,-2569,-2261,-2272,-2271,-2276,-2275,-2662]],[[2037,2038,2371,392,2372,2036]],[[35,36,37,38,39,40,41,42,43,44,1696,1697,1698,1699,1700,-3215,2771,3005,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,34],[2774,2775,2776,2777,3006,2773]],[[2477,1286,2063,2064,2065,2066]],[[-2044,3301,-3294,-1252,-2046,-2045]],[[1636,-2362,184]]],"properties":{"depth":6}},{"type":"MultiPolygon","arcs":[[[1035,1036,1037,3585,-2977,-2971,1053,1054,1055,1056,-3920,3983,3984,2655,-1045,-1044,1519,4115,-4111,-4110,-4109,551,3229,4376,4377,-1526,-1525,-1524,-1523,-1522,-902,-901,-3612,1645,1646,913,914,915,916,-3434,-3446,-3445,-3448,-3447,-582,-581,-580,-579,-288,-287,1030,1031,1032,1033,1034,-893,-892,-891,-890,-3430,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,554,555,2652,2653,2865,2866,-2855,-2854,-2857,208,209,210,1059]],[[-3942,-3021,4160,4161,8,9,3015,3016,-4150,-4149,-4148,-533,-532,-531,-1933,-1932,-1931,-1906,-2838,-2837,-4106,-4105,14,15,16,17,18,19,510,511,-4198,1348,1349,1350,1351,1352,1353,1354,1355,-4123,2675,2676,2677,2678,3203,3204,-2030,-4260,-1490,-1247,-1246,-1245,-1244,-1243,2448,2449,2450,-4220,-4206,2446,2447,1239,1845,2326,4331,-4327,-4329,1498,1499,1500,494,3661,-3692,-3691,-3696,-1606,-1605,-1604,-1603,-3510,2320,2321,993,-3547,-2318,-2317,502,503,504,505,-806,-805,1607,2491,2492,2493,2494,2495,2496,2497,995,996,997,998,999,1000,1953,1954,1955,4371,-4368,4334,4335,4336,4337,4338,-2395,-2394,-2406,-4187,-4225,-4224,-4223,2420,-3214,-3213,3684,1728,-1629,-1628,-1627,-1626,-2803,-2802,-2801,-767,-766,1065,1066,1067,1068,1069,4357,-3708,-3707,-3706,-1725,-1724,977,3209,3210,-4265,-4267,-4266,979,980,981,982,3826,3827,3828,3829,3830,3831,3832,3833,3834,3825,-1310,-1309,-1308,-1307,-1306,3953,3950,3951,-975,-974,-973,-972,73,74,-3946,3952,-3926,-3925,-3924,-3928,-1664,-1304,3719,3720,3721,3722,3723,3724,-2860,-2750,-3686,-3688,3758,-3754,-1315,-1314,-1313,-1312,-3766,2639,2640,-1292,-1291,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1831,1832,1833,1834,1835,1836,1837,-2485,-2484,-2631,-3653,-3652,-3651,490,4270,4271,2684,2685,2686,-1361,-1360,-1359,-1358,-3030,-3029,-2759,-3115,-3545,-3544,-3546,-687,-686,-685,-684,-4253,4211,4212,4207,4208,514,515,516,517,3171,-3156,-3155,-3154,-3153,-3152,-3159,-3158,524,525,526,4102,4103,-3107,-3111,-3110,-3109,1937,1938,1939,-520,-3036,-3276,-3120,-3123,-3122,-714,-713,-712,-711,-710,3206,-2329,-1547,-1546,-4275,704,705,-1543,3361,4168,4169,4170,-1540,-1539,-1538,4171,4172,4173,-1530,3022,-2903,-2902,-2901,-2900,-2899,-2898,3366,3367,717,-542,-541,-540,-539,4187,-3506,4188,-3943],[-3341,-3340,-3339,-3338,2426,2427,2428,2429,2430,2431,2432,-3658,-3657,-3659,-992,-991,-990,-989,-988,-987,-986,-3342]],[[2406,2407,2408,2409,2410,2411,2412,2413,-550,-549,-548,-547]],[[-3915,-601,-600,3920,2884,-2071]],[[3845,-3741,-3740,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,476,477,478,479,3041,3042,4137,4138,4139,-1023,-1022,-1021,-1020,-1019,1671,1672,-2842,3038,3039,3040,-486,-485,-484,-483,-3615,-3614,-3581,-3606,-3605,-3552,-3551,2489,-472,-471,3099,3100,3101,3102,-4144,-4143,-4147,-4146,-4145,3104,1385,1386,1387,1388,-1127,-4053,-4052,-4051,-4050,-1390,-1125,-1124,-4257,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,-1511,-1510,-1509,-1508,-1513,2193,2012,2013,3912,3913,79,80,81,-3911,3862,3863,83,84,85,86,87,-3192,-3179,-3182,3147,3148,3149,3150,-1924,-1923,-4182,-4348,-4347,-4346,93,-4374,-4373,-4376,3306,3307,3308,3309,97,98,401,402,403,560,3542,3463,3464,3465,563,564,565,2389,2390,-2380,-2379,-755,-754,-753,2391,1828,1829,408,409,410,411,-3038,-3267,-3266,-4314,-4313,-3270,-3269,423,424,425,426,427,428,429,430,431,2565,2566,-823,-417,-4412,-4411,-4413,-2211,880,881,882,883,440,441,442,3888,3882,4031,4032,4033,4034,4035,-446,-445,3928,3929,4305,-3073,-3078,-4184,-4183,2516,2504,-4360,-4350,-2514,-2513,-2512,-878,-877,-876,-875,-874,-873,747,748,2815,2816,2262,-2722,-2729,-2728,-2727,756,757,758,759,760,-4359,-573,1750,4245,4246,-4325,-4324,-4323,1752,-3679,-3769,3872,3873,3874,107,-3220,1759,1760,4216,4217,-4290,265,266,111,112,113,114,115,116,117,118,119,120,121,-3811,-2782,1096,1097,1098,1099,1100,1101,1102,-3496,-3495,-3494,3199,3200,3201,3194,3195,3196,3197,-1109,-1108,-1107,-1106,-3353,-2208,-2210,-1792,-3718,-3717,-3535,-3534,241,242,-1115,-1114,-1113,-1112,-4215,-4251,-4270,-4269,-4268,-264,-263,-262,-261,-260,-259,3250,3287,3288,1765,1766,-3281,-3280,-380,-379,-378,-377,-376,-375,-374,-373,2272,-3845,-3844,3786,3780,-2661,2268,-2570,-2569,-2261,-3619,-3675,-3674,-3673,-3677,-4191,-1191,-1190,-1189,3668,2763,2764,-370,-369,-368,-367,-366,-2573,-2703,-2702,-2701,-2700,-1187,-1186,-1185,3714,3715,-2571,-2575,-2574,-364,-363,-362,3713,-3533,-3532,-3531,3712,1448,-2741,2245,-1514,-1519,-1518,-1517,2246,1454,-3802,3806,3807,350,351,352,353,2434,2435,2436,2437,1281,1282,1283,1284,-2968,-2967,-2353,-2333,4117,4118,4119,4120,4121,-2331,-2336,-2335,-2356,-2355,2059,2060,-336,3699,3700,3701,3702,3703,1267,1268,1269,1270,668,669,670,3698,2531,2532,2533,2534,2535,-3631,-2981,-2980,1275,1276,1277,1278,-4294,-4293,-4292,-4379,640,641,642,-3689,-1684,-1683,-1682,-1681,-1181,-1180,3978,-2663,3979,1679,-1177,-1881,-1880,-2815,-2835,-2834,2843,2844,2845,-1206,-1205,-1204,737,4071,4065,4066,4067,4068,4069,4070,-2991,-2990,-4230,-4229,2090,2091,2092,2093,-2950,-2948,-3963,4193,4194,4195,-3140,-3139,2082,2083,2084,2085,450,451,-2955,-2954,4295,4296,4155,4156,4157,4158,-2962,-2961,-3982,-2768,-2080,-2079,-4232,-2959,-2958,-2957,-2956,-1376,-3453,1782,1783,1784,1785,1786,1787,1788,1789,3481,3482,3483,3484,3485,3486,1895,1896,-3416,1902,1903,-604,-603,1808,1809,1810,3846],[1378,-4385,-4384,-4388,-4387,-4386],[-1999,-1998,-1997,3857,3858,-3092,-3091,-3090,-3089,-3088,-3087,-2010,-2009,-3066,-3065,-3069,-3068,-3067,-2007,-2006,-2005,-2004,-2003,-2002,-2001,4029,4030,3886,4254,4255],[4125,-4142,-4141,1192,-741,-740],[-3773,-3502,-3501,-3500,-3499,-3498,-3772,-3771,-3770,-3774]],[[3742,3743,3992,3993,3994,-695,-694,-693,-692,-691,1014,1015,1016,-3934,-3923,-2905,-2909,-2908,-2907,-2895,2911,2912,3989,3990,3991,-2192,3778,3779,2181,2182,2183,2184,-3025,3774,3775,3776,3777,-1330,-1329,-1919,-1918,-1917,-2168,-1011]],[[35,36,-3489,-3503,-3452,-3451,-3450,1709,1710,1711,1712,1713,1714,1715,34]],[[39,40,2769,3435,3436,2774,3437]],[[46,-1152,-1151,-1150,-1149,-1094,1493,1494,1495,-2756,-2755,792,793,794,795,-3540,-3539,-2552,2127,2289,2290,2291,2292,-2607,-2606,-2605,-1703,-2523,2616,2617,2618,2619,2620]],[[2950,3999,4000,4001,54,4002,1661,1662,56,57,1648,1649,1650,-3189,-3191,-3190,-1654,3511,3512,3513,60,61,62,63,-3244,-3226,-3225,-3224,770,771,772,3300,3514,3515,776,777,778,779,780,781,782,783,784,4092,4085,-4137,-4136,-4135,-1164,-1163,-1162,-1161,-1160,-3881,-3880,-3879,-3878,-1157,-1156,-2260]],[[-727,-726,-725,-724,-723,-722,-721,-720,-632,-631,-1195,-2221,3609,3610,3637,3638,3639,-2219,-1418,-1417,-1198,-2240,-2243,-2725,-2737,-3799,-3798,-3797,2584,2585,2586,2587,2588,-661,-660,-659,3902,3903,-2465,-2464,-2477,-2476,-2475,-2474,664,665,-4320,-4394,-4395,3046,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,-3857,2471,2472,-2415,-1776,-1775,-1771,-1770,654,655,-927,-926,-925,-924,2580,2939,-3820,-3819,-3818,593,594,595,596,597,2589,2590,2591,2592,2593,2594,2112,2113,2114,2115,-3633,-3632,-2560,3584,3582,3583,-3578,-1889,-1888,-1887,-1886,2557,3641,3642,3643,4403]],[[674,-3476,-3475,-3961,-2440,-2439,-1273,-1272,672,673]],[[2477,1286,2063,2064,2065,2066]],[[1263,1264,-2063,-2062,-1961,-3170,-3162,-3161,-3165,-3164,-328,-2257,-2256,-2255,4304,-325,-1397,-1396,-1395,-4179,-4151,3966,3967,3968,-1800,-1799,-1798,-1797,-1808,-1807,4191,4192,170,171,172,-3683,-3682,-3681,3135,-1853,-1852,-1851,-2890,1861,1862,1863,1864,1865,1866,1847,1848,320,-3628,-4054,3901,3893,3894,3895,-2231,-1255,-1254,-3293,-3292,3421,3422,3423,-1986,-3389,-3388,1261,1262]],[[2345,-3420,-1778,-1983,2343,2344]],[[-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,300,301,302,303,304,305,306,307,308,309,310,311,312,-2916,-2397,930,931,-2400,2478,2479,2154,-3986,-3523,-3996,-3999,-3998,-4410,-3131,177,178,179,180,181,2480,3556,3557,3558,3559,3560,3561,3562,933,-3912,943,944,-4281,-4280,-4303,-4302,-4301,-4300,-4304,-4278,947,4325,2539,2714,2715,950,3814,3815,2282,-940,-3752,-3751,-3757,-3756,187,188,189,190,191,192,193,194]],[[-4115,-4114,4395,1570,2250,4010,4006,4007,4008,2887,330,331,332,4009,-3939,-2848,-2851,-2850,1575,1576,1577,3390,3317,3318,3242,1556,2228,2229,-2165,3142,3143,3144,3145,156,3425,3426,-1559,4061,4062,1562,1563,1564,160,161,162,4063,3232,-3287,-3286,-3285,-1567,-1566,164,165,1397,-3989]],[[344,345,346,347,-971,-970,-4177,-4176,-3976,-3935,1217,1218,1219,-1945,-1944,343]],[[967,-4085,-3813,-3805,-3804,-3803,1456,1457,1458,1459,853,854,855,-3734,-3765,-3809,-3810,3490,3491,1963,-827,-826,-825,-824,-871,-870,-869,-868,-867,-866,-3569,-3568,-3403,4199,4200,4201,4202,4203,4204,3468,3466,-240,-3537,-3719,-3604,-3603,-3728,-2784,-2788,-2796,-233,-232,1071,-3821,-3825,-3852,4179,226,227,228,-1583,-1719,3049,3050,3051,3052,1730,-1717,-1721,-2829,-3015,-3014,-831,-3429,-3405,-3129,-3128,-3127,-849,-848,2875,3892,3891,2874,2789,2790,2791,2792,-965,-964,-963,-4058,4082,-3974,-3973,4083]],[[-1870,-1869,1471,1472,384,385,-3656,-3590,-3635,-3634,-2826,-1871]],[[-251,-250,-249,-248,-3049,-3048,-3054,-864,-863,-862,-861,-860,-3593,-3592,-3655,-3654]],[[277,278,279,-4047,-3255,-4060]],[[1819,1820,1821,1822,1823,1824,-3459,-2382,-2389,-2388,146,147,148,149,3569,-3910]],[[1085,-2551,-2550,-2549,-2548,-2119,219,-2313,-2312,-2311,139,140,141,1083,1084]],[[-3823,-4013,-1616,-1615,-1741,-1740,-1739,-1738,-1737,-1736,-2173,2294,-2743,-2742,-2744,2302,-2143,-2142,-2141,-2140,1618,-3853]],[[3410,1078,1079,1080,1081,1082,126,127,128,3056,3057,3411,3412,3413,3414]],[[4307,4308,4309,-4283,102,103,104,-3175,-3174,-3882,-3386]]],"properties":{"depth":7}}]}},"arcs":[[[1,0],[1,-1]],[[2,-1],[1,1],[1,-1]],[[4,-1],[1,1],[1,-1],[0,-1]],[[6,-2],[1,-1],[0,-1]],[[7,-4],[1,-1],[0,-1],[-1,-1]],[[7,-7],[0,-1]],[[7,-8],[1,-1]],[[8,-9],[1,1],[1,-1]],[[10,-9],[1,1],[1,-1],[0,-1]],[[12,-10],[1,-1]],[[13,-11],[1,1],[1,-1]],[[15,-11],[1,1],[1,-1],[0,-1]],[[17,-12],[1,-1],[0,-1]],[[18,-14],[1,-1],[0,-1],[-1,-1]],[[18,-17],[0,-1]],[[18,-18],[1,-1],[0,-1]],[[19,-20],[1,-1],[0,-1],[-1,-1],[-1,1]],[[18,-22],[-1,-1]],[[17,-23],[0,-1],[-1,-1]],[[16,-25],[0,-1],[-1,-1]],[[15,-27],[0,-1]],[[15,-28],[1,-1],[0,-1]],[[16,-30],[1,-1],[0,-1],[-1,-1]],[[16,-33],[0,-1]],[[16,-34],[1,-1]],[[17,-35],[1,1],[1,-1]],[[19,-35],[1,1],[1,-1],[0,-1]],[[21,-36],[1,-1]],[[22,-37],[1,1],[1,-1]],[[24,-37],[1,1],[1,-1],[0,-1]],[[26,-38],[1,-1],[0,-1]],[[27,-40],[1,-1],[0,-1],[-1,-1]],[[27,-43],[0,-1]],[[27,-44],[1,-1]],[[28,-45],[1,1],[1,-1]],[[30,-45],[1,1],[1,-1],[0,-1]],[[32,-46],[1,-1]],[[33,-47],[1,1],[1,-1]],[[35,-47],[1,1],[1,-1],[0,-1]],[[37,-48],[1,-1],[0,-1]],[[38,-50],[1,-1],[0,-1],[-1,-1]],[[38,-53],[0,-1]],[[38,-54],[1,-1],[0,-1]],[[39,-56],[1,-1],[0,-1],[-1,-1],[-1,1]],[[38,-58],[-1,-1]],[[37,-59],[0,-1],[-1,-1]],[[36,-61],[0,-1],[-1,-1]],[[35,-63],[0,-1]],[[35,-64],[1,-1],[0,-1]],[[36,-66],[1,-1],[0,-1],[-1,-1]],[[36,-69],[0,-1]],[[36,-70],[1,-1],[0,-1]],[[37,-72],[1,-1],[0,-1],[-1,-1],[-1,1]],[[36,-74],[-1,-1]],[[35,-75],[0,-1],[-1,-1]],[[34,-77],[0,-1],[-1,-1],[-1,1]],[[32,-78],[-1,-1],[-1,1]],[[30,-78],[-1,-1],[-1,1],[0,1]],[[28,-77],[-1,1]],[[27,-76],[-1,-1]],[[26,-77],[0,-1],[-1,-1]],[[25,-79],[0,-1],[-1,-1],[-1,1]],[[23,-80],[-1,-1]],[[22,-81],[0,-1],[-1,-1]],[[21,-83],[0,-1],[-1,-1],[-1,1]],[[19,-84],[-1,-1],[-1,1]],[[17,-84],[-1,-1],[-1,1],[0,1]],[[15,-83],[-1,1]],[[14,-82],[-1,-1],[-1,1]],[[12,-82],[-1,-1],[-1,1],[0,1],[1,1]],[[11,-80],[0,1]],[[11,-79],[-1,1],[0,1]],[[10,-77],[-1,1],[0,1]],[[9,-75],[-1,1]],[[8,-74],[-1,-1],[-1,1]],[[6,-74],[-1,-1],[-1,1],[0,1]],[[4,-73],[-1,1]],[[3,-72],[-1,-1]],[[2,-73],[0,-1],[-1,-1]],[[1,-75],[0,-1],[-1,-1],[-1,1]],[[-1,-76],[-1,-1]],[[-2,-77],[0,-1],[-1,-1]],[[-3,-79],[0,-1],[-1,-1],[-1,1]],[[-5,-80],[-1,-1],[-1,1]],[[-7,-80],[-1,-1],[-1,1],[0,1]],[[-9,-79],[-1,1]],[[-10,-78],[-1,-1]],[[-11,-79],[0,-1],[-1,-1]],[[-12,-81],[0,-1],[-1,-1],[-1,1]],[[-14,-82],[-1,-1]],[[-15,-83],[0,-1],[-1,-1]],[[-16,-85],[0,-1],[-1,-1],[-1,1]],[[-18,-86],[-1,-1],[-1,1]],[[-20,-86],[-1,-1],[-1,1],[0,1]],[[-22,-85],[-1,1]],[[-23,-84],[-1,-1],[-1,1]],[[-25,-84],[-1,-1],[-1,1],[0,1],[1,1]],[[-26,-82],[0,1]],[[-26,-81],[-1,1]],[[-27,-80],[-1,-1],[-1,1],[0,1]],[[-29,-79],[-1,1]],[[-30,-78],[-1,-1]],[[-31,-79],[0,-1],[-1,-1],[-1,1]],[[-33,-80],[-1,-1],[-1,1]],[[-35,-80],[-1,-1],[-1,1],[0,1]],[[-37,-79],[-1,1]],[[-38,-78],[-1,-1]],[[-39,-79],[0,-1],[-1,-1]],[[-40,-81],[0,-1],[-1,-1],[-1,1]],[[-42,-82],[-1,-1],[-1,1]],[[-44,-82],[-1,-1],[-1,1],[0,1]],[[-46,-81],[-1,1]],[[-47,-80],[-1,-1]],[[-48,-81],[0,-1],[-1,-1]],[[-49,-83],[0,-1],[-1,-1],[-1,1]],[[-51,-84],[-1,-1]],[[-52,-85],[0,-1],[-1,-1]],[[-53,-87],[0,-1],[-1,-1],[-1,1]],[[-55,-88],[-1,-1],[-1,1]],[[-57,-88],[-1,-1],[-1,1],[0,1]],[[-59,-87],[-1,1]],[[-60,-86],[-1,-1],[-1,1]],[[-62,-86],[-1,-1],[-1,1],[0,1],[1,1]],[[-63,-84],[0,1]],[[-63,-83],[-1,1],[0,1]],[[-64,-81],[-1,1],[0,1]],[[-65,-79],[-1,1]],[[-66,-78],[-1,-1],[-1,1]],[[-68,-78],[-1,-1],[-1,1],[0,1]],[[-70,-77],[-1,1]],[[-71,-76],[-1,-1],[-1,1]],[[-73,-76],[-1,-1],[-1,1],[0,1],[1,1]],[[-74,-74],[0,1]],[[-74,-73],[-1,1],[0,1]],[[-75,-71],[-1,1],[0,1],[1,1]],[[-75,-68],[0,1],[1,1]],[[-74,-66],[0,1],[1,1],[1,-1]],[[-72,-65],[1,1]],[[-71,-64],[0,1]],[[-71,-63],[-1,1],[0,1]],[[-72,-61],[-1,1],[0,1],[1,1]],[[-72,-58],[0,1]],[[-72,-57],[-1,1],[0,1]],[[-73,-55],[-1,1],[0,1],[1,1]],[[-73,-52],[0,1],[1,1]],[[-72,-50],[0,1],[1,1],[1,-1]],[[-70,-49],[1,1]],[[-69,-48],[0,1],[1,1]],[[-68,-46],[0,1],[1,1],[1,-1],[0,-1]],[[-66,-46],[1,-1]],[[-65,-47],[1,1],[1,-1]],[[-63,-47],[1,1],[1,-1]],[[-61,-47],[1,1]],[[-60,-46],[0,1],[1,1]],[[-59,-44],[0,1],[1,1],[1,-1]],[[-57,-43],[1,1]],[[-56,-42],[0,1]],[[-56,-41],[-1,1],[0,1]],[[-57,-39],[-1,1],[0,1],[1,1]],[[-57,-36],[0,1]],[[-57,-35],[-1,1],[0,1]],[[-58,-33],[-1,1],[0,1],[1,1]],[[-58,-30],[0,1],[1,1]],[[-57,-28],[0,1],[1,1],[1,-1]],[[-55,-27],[1,1]],[[-54,-26],[0,1]],[[-54,-25],[-1,1],[0,1]],[[-55,-23],[-1,1],[0,1],[1,1]],[[-55,-20],[0,1]],[[-55,-19],[-1,1],[0,1]],[[-56,-17],[-1,1],[0,1],[1,1]],[[-56,-14],[0,1],[1,1]],[[-55,-12],[0,1],[1,1],[1,-1]],[[-53,-11],[1,1]],[[-52,-10],[0,1],[1,1]],[[-51,-8],[0,1],[1,1],[1,-1],[0,-1]],[[-49,-8],[1,-1]],[[-48,-9],[1,1],[1,-1]],[[-46,-9],[1,1],[1,-1]],[[-44,-9],[1,1]],[[-43,-8],[0,1],[1,1]],[[-42,-6],[0,1],[1,1],[1,-1]],[[-40,-5],[1,1]],[[-39,-4],[0,1],[1,1]],[[-38,-2],[0,1],[1,1],[1,-1],[0,-1]],[[-36,-2],[1,-1]],[[-35,-3],[1,1],[1,-1]],[[-33,-3],[1,1],[1,-1],[0,-1]],[[-31,-4],[1,-1],[0,-1]],[[-30,-6],[1,-1],[0,-1],[-1,-1]],[[-30,-9],[0,-1]],[[-30,-10],[1,-1]],[[-29,-11],[1,1],[1,-1]],[[-27,-11],[1,1],[1,-1],[0,-1]],[[-25,-12],[1,-1]],[[-24,-13],[1,1],[1,-1]],[[-22,-13],[1,1],[1,-1]],[[-20,-13],[1,1]],[[-19,-12],[0,1],[1,1]],[[-18,-10],[0,1],[1,1],[1,-1]],[[-16,-9],[1,1]],[[-15,-8],[0,1],[1,1]],[[-14,-6],[0,1],[1,1],[1,-1],[0,-1]],[[-12,-6],[1,-1]],[[-11,-7],[1,1],[1,-1]],[[-9,-7],[1,1],[1,-1]],[[-7,-7],[1,1]],[[-6,-6],[0,1],[1,1]],[[-5,-4],[0,1],[1,1],[1,-1]],[[-3,-3],[1,1]],[[-2,-2],[0,1],[1,1]],[[-1,0],[0,1],[1,1],[1,-1],[0,-1]],[[-68,-54],[-1,-1]],[[-69,-55],[0,-1]],[[-69,-56],[1,-1]],[[-68,-57],[0,-1]],[[-68,-58],[1,-1]],[[-67,-59],[0,-1]],[[-67,-60],[-1,-1]],[[-68,-61],[0,-1]],[[-68,-62],[1,-1]],[[-67,-63],[1,1]],[[-66,-62],[1,-1]],[[-65,-63],[1,1]],[[-64,-62],[1,-1]],[[-63,-63],[0,-1]],[[-63,-64],[1,-1]],[[-62,-65],[0,-1]],[[-62,-66],[1,-1]],[[-61,-67],[0,-1]],[[-61,-68],[-1,-1]],[[-62,-69],[0,-1]],[[-62,-70],[1,-1]],[[-61,-71],[1,1]],[[-60,-70],[1,-1]],[[-59,-71],[1,1]],[[-58,-70],[1,-1]],[[-57,-71],[0,-1]],[[-57,-72],[1,-1]],[[-56,-73],[1,1]],[[-55,-72],[1,-1]],[[-54,-73],[1,1]],[[-53,-72],[1,-1]],[[-52,-73],[1,1]],[[-51,-72],[0,1]],[[-51,-71],[1,1]],[[-50,-70],[0,1]],[[-50,-69],[1,1]],[[-49,-68],[1,-1]],[[-48,-69],[1,1]],[[-47,-68],[0,1]],[[-47,-67],[1,1]],[[-46,-66],[1,-1]],[[-45,-67],[0,-1]],[[-45,-68],[-1,-1]],[[-46,-69],[0,-1]],[[-46,-70],[1,-1]],[[-45,-71],[0,-1]],[[-45,-72],[-1,-1]],[[-46,-73],[0,-1]],[[-46,-74],[-1,-1]],[[-47,-75],[0,-1]],[[-47,-76],[1,-1]],[[-46,-77],[0,-1]],[[-46,-78],[1,-1]],[[-45,-79],[0,-1]],[[-45,-80],[-1,-1]],[[-61,-47],[0,-1]],[[-61,-48],[1,-1]],[[-60,-49],[0,-1]],[[-60,-50],[1,-1]],[[-59,-51],[0,-1]],[[-59,-52],[-1,-1]],[[-60,-53],[-1,1]],[[-61,-52],[-1,-1]],[[-62,-53],[0,-1]],[[-62,-54],[-1,-1]],[[-63,-55],[0,-1]],[[-63,-56],[-1,-1]],[[-64,-57],[-1,1]],[[-65,-56],[-1,-1]],[[-66,-57],[-1,1]],[[-67,-56],[0,1]],[[-67,-55],[-1,1]],[[-19,-15],[0,-1]],[[-19,-16],[1,-1]],[[-18,-17],[0,-1]],[[-18,-18],[-1,-1]],[[-19,-19],[-1,1]],[[-20,-18],[-1,-1]],[[-21,-19],[-1,1]],[[-22,-18],[0,1]],[[-22,-17],[-1,1]],[[-23,-16],[-1,-1]],[[-24,-17],[-1,1]],[[-25,-16],[-1,-1]],[[-26,-17],[-1,1]],[[-27,-16],[-1,-1]],[[-28,-17],[-1,1]],[[-29,-16],[0,1]],[[-29,-15],[-1,1]],[[-30,-14],[-1,-1]],[[-31,-15],[0,-1]],[[-31,-16],[-1,-1]],[[-32,-17],[0,-1]],[[-32,-18],[-1,-1]],[[-33,-19],[-1,1]],[[-34,-18],[-1,-1]],[[-35,-19],[-1,1]],[[-36,-18],[-1,-1]],[[-37,-19],[-1,1]],[[-38,-18],[0,1]],[[-38,-17],[-1,1]],[[-39,-16],[-1,-1]],[[-40,-17],[0,-1]],[[-40,-18],[-1,-1]],[[-41,-19],[0,-1]],[[-41,-20],[-1,-1]],[[-42,-21],[-1,1]],[[-43,-20],[-1,-1]],[[-44,-21],[0,-1]],[[-44,-22],[-1,-1]],[[-45,-23],[0,-1]],[[-45,-24],[-1,-1]],[[-46,-25],[0,-1]],[[-46,-26],[1,-1]],[[-45,-27],[0,-1]],[[-45,-28],[1,-1]],[[-44,-29],[0,-1]],[[-44,-30],[-1,-1]],[[-45,-31],[0,-1]],[[-45,-32],[1,-1]],[[-44,-33],[0,-1]],[[-44,-34],[1,-1]],[[-43,-35],[0,-1]],[[-43,-36],[-1,-1]],[[-44,-37],[-1,1]],[[-45,-36],[-1,-1]],[[-46,-37],[0,-1]],[[-46,-38],[-1,-1]],[[-47,-39],[0,-1]],[[-47,-40],[-1,-1]],[[-48,-41],[0,-1]],[[-48,-42],[1,-1]],[[-47,-43],[0,-1]],[[-47,-44],[1,-1]],[[-46,-45],[0,-1]],[[-46,-46],[-1,-1]],[[-47,-47],[0,-1]],[[-47,-48],[1,-1]],[[-46,-49],[1,1]],[[-45,-48],[1,-1]],[[-44,-49],[1,1]],[[-43,-48],[1,-1]],[[-42,-49],[0,-1]],[[-42,-50],[1,-1]],[[-41,-51],[1,1]],[[-40,-50],[1,-1]],[[-39,-51],[1,1]],[[-38,-50],[1,-1]],[[-37,-51],[0,-1]],[[-37,-52],[1,-1]],[[-36,-53],[0,-1]],[[-36,-54],[1,-1]],[[-35,-55],[0,-1]],[[-35,-56],[-1,-1]],[[-36,-57],[0,-1]],[[-36,-58],[1,-1]],[[-35,-59],[0,-1]],[[-35,-60],[1,-1]],[[-34,-61],[0,-1]],[[-34,-62],[-1,-1]],[[-35,-63],[-1,1]],[[-36,-62],[-1,-1]],[[-37,-63],[0,-1]],[[-37,-64],[-1,-1]],[[-38,-65],[0,-1]],[[-38,-66],[-1,-1]],[[-39,-67],[-1,1]],[[-40,-66],[-1,-1]],[[-41,-67],[-1,1]],[[-42,-66],[-1,-1]],[[-43,-67],[-1,1]],[[-44,-66],[0,1]],[[-44,-65],[-1,1]],[[-45,-64],[-1,-1]],[[-46,-65],[0,-1]],[[-20,-13],[0,-1]],[[-20,-14],[1,-1]],[[22,-49],[0,-1]],[[22,-50],[1,-1]],[[23,-51],[1,1]],[[24,-50],[0,1]],[[24,-49],[-1,1]],[[23,-48],[0,1]],[[23,-47],[1,1]],[[24,-46],[0,1]],[[24,-45],[1,1]],[[25,-44],[0,1]],[[25,-43],[1,1]],[[26,-42],[1,-1]],[[-27,-80],[0,1]],[[-27,-79],[-1,1]],[[-28,-78],[0,1]],[[-28,-77],[1,1]],[[-27,-76],[0,1]],[[-27,-75],[1,1]],[[-26,-74],[0,1]],[[-26,-73],[1,1]],[[-25,-72],[1,-1]],[[-24,-73],[0,-1]],[[-24,-74],[1,-1]],[[-23,-75],[1,1]],[[-22,-74],[1,-1]],[[-21,-75],[1,1]],[[-20,-74],[1,-1]],[[-19,-75],[0,-1]],[[-19,-76],[-1,-1]],[[-20,-77],[-1,1]],[[-21,-76],[-1,-1]],[[-22,-77],[0,-1]],[[-22,-78],[-1,-1]],[[-23,-79],[0,-1]],[[-23,-80],[1,-1]],[[-22,-81],[1,1]],[[-21,-80],[1,-1]],[[-20,-81],[1,1]],[[-19,-80],[1,-1]],[[-18,-81],[1,1]],[[-17,-80],[0,1]],[[-17,-79],[1,1]],[[-16,-78],[0,1]],[[-16,-77],[1,1]],[[-15,-76],[1,-1]],[[-14,-77],[1,1]],[[-13,-76],[0,1]],[[-13,-75],[-1,1]],[[-14,-74],[0,1]],[[-14,-73],[-1,1]],[[-15,-72],[0,1]],[[-15,-71],[1,1]],[[-14,-70],[0,1]],[[-14,-69],[1,1]],[[-13,-68],[0,1]],[[-13,-67],[1,1]],[[-12,-66],[1,-1]],[[-11,-67],[1,1]],[[-10,-66],[0,1]],[[-10,-65],[1,1]],[[-9,-64],[0,1]],[[-9,-63],[1,1]],[[-8,-62],[1,-1]],[[-7,-63],[0,-1]],[[-7,-64],[1,-1]],[[-6,-65],[1,1]],[[-5,-64],[1,-1]],[[-4,-65],[1,1]],[[-3,-64],[1,-1]],[[-2,-65],[1,1]],[[-1,-64],[0,1]],[[-1,-63],[1,1]],[[0,-62],[0,1]],[[0,-61],[1,1]],[[1,-60],[1,-1]],[[2,-61],[1,1]],[[3,-60],[0,1]],[[3,-59],[-1,1]],[[2,-58],[0,1]],[[2,-57],[-1,1]],[[1,-56],[0,1]],[[1,-55],[1,1]],[[2,-54],[0,1]],[[2,-53],[-1,1]],[[1,-52],[0,1]],[[1,-51],[-1,1]],[[0,-50],[0,1]],[[0,-49],[1,1]],[[1,-48],[0,1]],[[1,-47],[1,1]],[[2,-46],[0,1]],[[2,-45],[1,1]],[[3,-44],[1,-1]],[[4,-45],[1,1]],[[5,-44],[0,1]],[[5,-43],[1,1]],[[6,-42],[0,1]],[[6,-41],[1,1]],[[7,-40],[1,-1]],[[8,-41],[0,-1]],[[8,-42],[1,-1]],[[9,-43],[1,1]],[[10,-42],[1,-1]],[[11,-43],[1,1]],[[12,-42],[1,-1]],[[13,-43],[0,-1]],[[13,-44],[1,-1]],[[14,-45],[0,-1]],[[14,-46],[1,-1]],[[15,-47],[0,-1]],[[15,-48],[-1,-1]],[[14,-49],[0,-1]],[[14,-50],[1,-1]],[[15,-51],[1,1]],[[16,-50],[1,-1]],[[17,-51],[1,1]],[[18,-50],[1,-1]],[[19,-51],[1,1]],[[20,-50],[0,1]],[[20,-49],[1,1]],[[21,-48],[1,-1]],[[15,-27],[-1,1]],[[14,-26],[-1,-1]],[[13,-27],[-1,1]],[[12,-26],[-1,-1]],[[11,-27],[-1,1]],[[10,-26],[0,1]],[[10,-25],[1,1]],[[11,-24],[0,1]],[[11,-23],[-1,1]],[[10,-22],[0,1]],[[10,-21],[1,1]],[[11,-20],[1,-1]],[[12,-21],[1,1]],[[13,-20],[1,-1]],[[14,-21],[1,1]],[[15,-20],[0,1]],[[15,-19],[-1,1]],[[14,-18],[0,1]],[[14,-17],[-1,1]],[[13,-16],[0,1]],[[13,-15],[-1,1]],[[12,-14],[-1,-1]],[[11,-15],[-1,1]],[[10,-14],[-1,-1]],[[9,-15],[-1,1]],[[8,-14],[0,1]],[[8,-13],[-1,1]],[[7,-12],[-1,-1]],[[6,-13],[0,-1]],[[6,-14],[-1,-1]],[[5,-15],[0,-1]],[[5,-16],[-1,-1]],[[4,-17],[-1,1]],[[3,-16],[-1,-1]],[[2,-17],[-1,1]],[[1,-16],[-1,-1]],[[0,-17],[-1,1]],[[-1,-16],[0,1]],[[-1,-15],[-1,1]],[[-2,-14],[-1,-1]],[[-3,-15],[-1,1]],[[-4,-14],[-1,-1]],[[-5,-15],[-1,1]],[[-6,-14],[0,1]],[[-6,-13],[1,1]],[[-5,-12],[0,1]],[[-5,-11],[-1,1]],[[-6,-10],[0,1]],[[-6,-9],[-1,1]],[[-7,-8],[0,1]],[[-28,-77],[-1,1]],[[-29,-76],[-1,-1]],[[-30,-77],[-1,1]],[[-31,-76],[-1,-1]],[[-32,-77],[-1,1]],[[-33,-76],[0,1]],[[-33,-75],[-1,1]],[[-34,-74],[-1,-1]],[[-35,-75],[-1,1]],[[-36,-74],[-1,-1]],[[-37,-75],[-1,1]],[[-38,-74],[0,1]],[[-38,-73],[1,1]],[[-37,-72],[0,1]],[[-37,-71],[-1,1]],[[-38,-70],[0,1]],[[-38,-69],[-1,1]],[[-39,-68],[0,1]],[[-19,-19],[0,-1]],[[-19,-20],[1,-1]],[[-18,-21],[0,-1]],[[-18,-22],[1,-1]],[[-17,-23],[0,-1]],[[-17,-24],[-1,-1]],[[-18,-25],[-1,1]],[[-19,-24],[-1,-1]],[[-20,-25],[0,-1]],[[-20,-26],[-1,-1]],[[-21,-27],[0,-1]],[[-21,-28],[-1,-1]],[[-22,-29],[0,-1]],[[-22,-30],[1,-1]],[[-21,-31],[0,-1]],[[-21,-32],[1,-1]],[[-20,-33],[0,-1]],[[-20,-34],[-1,-1]],[[-21,-35],[0,-1]],[[-21,-36],[1,-1]],[[-20,-37],[1,1]],[[-19,-36],[1,-1]],[[-18,-37],[1,1]],[[-17,-36],[1,-1]],[[-16,-37],[0,-1]],[[-16,-38],[1,-1]],[[-15,-39],[1,1]],[[-14,-38],[1,-1]],[[-13,-39],[1,1]],[[-12,-38],[1,-1]],[[-11,-39],[0,-1]],[[-11,-40],[1,-1]],[[-10,-41],[0,-1]],[[-10,-42],[1,-1]],[[-9,-43],[0,-1]],[[-9,-44],[-1,-1]],[[-10,-45],[0,-1]],[[-10,-46],[1,-1]],[[-9,-47],[1,1]],[[-8,-46],[1,-1]],[[-7,-47],[1,1]],[[-6,-46],[1,-1]],[[-5,-47],[0,-1]],[[-5,-48],[1,-1]],[[-4,-49],[1,1]],[[-3,-48],[1,-1]],[[-2,-49],[1,1]],[[-1,-48],[1,-1]],[[-57,-43],[0,-1]],[[-57,-44],[-1,-1]],[[-58,-45],[-1,1]],[[-44,-66],[-1,-1]],[[-28,-41],[0,-1]],[[-28,-42],[-1,-1]],[[-29,-43],[-1,1]],[[-30,-42],[-1,-1]],[[-31,-43],[0,-1]],[[-31,-44],[-1,-1]],[[-32,-45],[0,-1]],[[-32,-46],[-1,-1]],[[-33,-47],[-1,1]],[[-34,-46],[-1,-1]],[[-35,-47],[0,-1]],[[-35,-48],[-1,-1]],[[-36,-49],[0,-1]],[[-36,-50],[-1,-1]],[[-24,-17],[0,-1]],[[-24,-18],[1,-1]],[[-23,-19],[0,-1]],[[-23,-20],[1,-1]],[[-22,-21],[0,-1]],[[-22,-22],[-1,-1]],[[-23,-23],[0,-1]],[[-23,-24],[-1,-1]],[[-24,-25],[-1,1]],[[-25,-24],[-1,-1]],[[-26,-25],[0,-1]],[[-26,-26],[-1,-1]],[[-27,-27],[-1,1]],[[-28,-26],[-1,-1]],[[-29,-27],[0,-1]],[[-29,-28],[-1,-1]],[[-30,-29],[0,-1]],[[-30,-30],[-1,-1]],[[-31,-31],[-1,1]],[[-32,-30],[-1,-1]],[[-33,-31],[0,-1]],[[-33,-32],[-1,-1]],[[-34,-33],[0,-1]],[[-34,-34],[-1,-1]],[[-35,-35],[0,-1]],[[-35,-36],[1,-1]],[[-34,-37],[0,-1]],[[-34,-38],[1,-1]],[[-33,-39],[1,1]],[[-32,-38],[1,-1]],[[-31,-39],[0,-1]],[[-31,-40],[1,-1]],[[-30,-41],[1,1]],[[-29,-40],[1,-1]],[[10,-25],[-1,1]],[[9,-24],[-1,-1]],[[8,-25],[0,-1]],[[8,-26],[-1,-1]],[[7,-27],[0,-1]],[[7,-28],[-1,-1]],[[6,-29],[-1,1]],[[5,-28],[-1,-1]],[[4,-29],[0,-1]],[[4,-30],[-1,-1]],[[3,-31],[0,-1]],[[3,-32],[-1,-1]],[[2,-33],[-1,1]],[[1,-32],[-1,-1]],[[0,-33],[-1,1]],[[-1,-32],[-1,-1]],[[-2,-33],[-1,1]],[[-3,-32],[0,1]],[[-3,-31],[1,1]],[[-2,-30],[0,1]],[[-2,-29],[1,1]],[[-1,-28],[1,-1]],[[0,-29],[0,-1]],[[0,-30],[1,-1]],[[1,-31],[1,1]],[[2,-30],[0,1]],[[2,-29],[-1,1]],[[1,-28],[0,1]],[[1,-27],[1,1]],[[2,-26],[0,1]],[[2,-25],[1,1]],[[3,-24],[0,1]],[[3,-23],[1,1]],[[4,-22],[1,-1]],[[5,-23],[1,1]],[[6,-22],[0,1]],[[6,-21],[-1,1]],[[5,-20],[0,1]],[[5,-19],[-1,1]],[[4,-18],[0,1]],[[-47,-68],[1,-1]],[[-29,-43],[0,-1]],[[-29,-44],[1,-1]],[[-28,-45],[1,1]],[[-27,-44],[1,-1]],[[-26,-45],[1,1]],[[-25,-44],[1,-1]],[[-24,-45],[0,-1]],[[-24,-46],[1,-1]],[[-23,-47],[0,-1]],[[-23,-48],[1,-1]],[[-22,-49],[0,-1]],[[-22,-50],[-1,-1]],[[-23,-51],[0,-1]],[[-23,-52],[1,-1]],[[-22,-53],[0,-1]],[[-22,-54],[-1,-1]],[[-23,-55],[0,-1]],[[-23,-56],[-1,-1]],[[-24,-57],[0,-1]],[[-24,-58],[-1,-1]],[[-25,-59],[0,-1]],[[-25,-60],[-1,-1]],[[-26,-61],[0,-1]],[[-26,-62],[1,-1]],[[-25,-63],[0,-1]],[[-25,-64],[1,-1]],[[-24,-65],[0,-1]],[[-24,-66],[-1,-1]],[[-25,-67],[-1,1]],[[-26,-66],[-1,-1]],[[-27,-67],[0,-1]],[[-27,-68],[-1,-1]],[[-28,-69],[0,-1]],[[-28,-70],[-1,-1]],[[-29,-71],[-1,1]],[[-30,-70],[-1,-1]],[[-31,-71],[-1,1]],[[-32,-70],[-1,-1]],[[-33,-71],[0,-1]],[[-33,-72],[-1,-1]],[[-34,-73],[-1,1]],[[-35,-72],[-1,-1]],[[-36,-73],[0,-1]],[[11,-79],[1,1]],[[12,-78],[1,-1]],[[13,-79],[1,1]],[[14,-78],[1,-1]],[[15,-79],[1,1]],[[16,-78],[1,-1]],[[17,-79],[1,1]],[[18,-78],[1,-1]],[[19,-79],[1,1]],[[20,-78],[0,1]],[[20,-77],[1,1]],[[21,-76],[0,1]],[[21,-75],[1,1]],[[22,-74],[1,-1]],[[23,-75],[1,1]],[[24,-74],[0,1]],[[24,-73],[-1,1]],[[23,-72],[0,1]],[[23,-71],[-1,1]],[[22,-70],[0,1]],[[22,-69],[1,1]],[[23,-68],[0,1]],[[23,-67],[1,1]],[[24,-66],[0,1]],[[24,-65],[1,1]],[[25,-64],[1,-1]],[[26,-65],[1,1]],[[27,-64],[0,1]],[[27,-63],[-1,1]],[[26,-62],[0,1]],[[26,-61],[-1,1]],[[25,-60],[0,1]],[[25,-59],[1,1]],[[26,-58],[0,1]],[[26,-57],[-1,1]],[[25,-56],[0,1]],[[25,-55],[-1,1]],[[24,-54],[0,1]],[[24,-53],[-1,1]],[[23,-52],[-1,-1]],[[22,-53],[-1,1]],[[21,-52],[-1,-1]],[[20,-53],[-1,1]],[[19,-52],[0,1]],[[-1,-15],[1,1]],[[0,-14],[0,1]],[[0,-13],[1,1]],[[1,-12],[1,-1]],[[2,-13],[1,1]],[[3,-12],[0,1]],[[3,-11],[1,1]],[[4,-10],[0,1]],[[4,-9],[1,1]],[[5,-8],[0,1]],[[5,-7],[1,1]],[[6,-6],[1,-1]],[[-18,-77],[0,-1]],[[-18,-78],[-1,-1]],[[-19,-79],[-1,1]],[[-20,-78],[0,1]],[[-19,-76],[1,-1]],[[-54,-65],[1,1]],[[-53,-64],[0,1]],[[-53,-63],[-1,1]],[[-54,-62],[0,1]],[[-54,-61],[-1,1]],[[-55,-60],[-1,-1]],[[-56,-61],[-1,1]],[[-57,-60],[-1,-1]],[[-58,-61],[-1,1]],[[-59,-60],[0,1]],[[-59,-59],[-1,1]],[[-60,-58],[-1,-1]],[[-61,-59],[0,-1]],[[-61,-60],[-1,-1]],[[-62,-61],[0,-1]],[[-62,-62],[-1,-1]],[[-67,-59],[1,1]],[[-66,-58],[0,1]],[[-60,-53],[0,-1]],[[-60,-54],[1,-1]],[[-59,-55],[1,1]],[[-58,-54],[1,-1]],[[-57,-55],[1,1]],[[-56,-54],[1,-1]],[[-55,-55],[0,-1]],[[-55,-56],[1,-1]],[[-54,-57],[1,1]],[[-53,-56],[1,-1]],[[-52,-57],[1,1]],[[-51,-56],[1,-1]],[[-50,-57],[0,-1]],[[-50,-58],[1,-1]],[[-49,-59],[0,-1]],[[-49,-60],[1,-1]],[[-48,-61],[0,-1]],[[-48,-62],[-1,-1]],[[-49,-63],[-1,1]],[[-50,-62],[-1,-1]],[[-51,-63],[0,-1]],[[-51,-64],[-1,-1]],[[-52,-65],[0,-1]],[[-52,-66],[-1,-1]],[[-53,-67],[-1,1]],[[-54,-66],[-1,-1]],[[-55,-67],[-1,1]],[[-56,-66],[0,1]],[[-56,-65],[1,1]],[[-55,-64],[1,-1]],[[-68,-57],[1,1]],[[-25,-67],[0,-1]],[[-25,-68],[1,-1]],[[-24,-69],[1,1]],[[-23,-68],[1,-1]],[[-22,-69],[1,1]],[[-21,-68],[1,-1]],[[-20,-69],[0,-1]],[[-20,-70],[1,-1]],[[-19,-71],[1,1]],[[-18,-70],[1,-1]],[[-17,-71],[1,1]],[[-16,-70],[1,-1]],[[-14,-9],[0,-1]],[[-14,-10],[1,-1]],[[-13,-11],[0,-1]],[[-13,-12],[-1,-1]],[[-14,-13],[0,-1]],[[-14,-14],[-1,-1]],[[-15,-15],[0,-1]],[[-15,-16],[1,-1]],[[-14,-17],[0,-1]],[[-14,-18],[1,-1]],[[-13,-19],[0,-1]],[[-13,-20],[-1,-1]],[[-14,-21],[0,-1]],[[-14,-22],[1,-1]],[[-13,-23],[1,1]],[[-12,-22],[1,-1]],[[-11,-23],[1,1]],[[-10,-22],[1,-1]],[[-9,-23],[0,-1]],[[-9,-24],[1,-1]],[[-8,-25],[0,-1]],[[-8,-26],[1,-1]],[[-7,-27],[0,-1]],[[-7,-28],[-1,-1]],[[-8,-29],[-1,1]],[[-9,-28],[-1,-1]],[[-10,-29],[-1,1]],[[-11,-28],[0,1]],[[-11,-27],[-1,1]],[[-12,-26],[-1,-1]],[[-13,-27],[-1,1]],[[-14,-26],[-1,-1]],[[-15,-27],[-1,1]],[[-16,-26],[-1,-1]],[[-17,-27],[-1,1]],[[-18,-26],[0,1]],[[-15,-8],[1,-1]],[[-22,-29],[-1,1]],[[-23,-28],[-1,-1]],[[-24,-29],[-1,1]],[[-25,-28],[-1,-1]],[[-26,-29],[-1,1]],[[-27,-28],[0,1]],[[-38,-17],[1,1]],[[-37,-16],[0,1]],[[-37,-15],[-1,1]],[[-38,-14],[0,1]],[[-38,-13],[-1,1]],[[-39,-12],[0,1]],[[-39,-11],[1,1]],[[-38,-10],[0,1]],[[-38,-9],[1,1]],[[-37,-8],[0,1]],[[-37,-7],[1,1]],[[-36,-6],[1,-1]],[[-35,-7],[0,-1]],[[-35,-8],[-1,-1]],[[-36,-9],[0,-1]],[[-36,-10],[-1,-1]],[[-37,-11],[0,-1]],[[-37,-12],[1,-1]],[[-36,-13],[1,1]],[[-35,-12],[1,-1]],[[-34,-13],[1,1]],[[-33,-12],[0,1]],[[-33,-11],[1,1]],[[-32,-10],[0,1]],[[-32,-9],[1,1]],[[-31,-8],[1,-1]],[[-58,-45],[0,-1]],[[-58,-46],[-1,-1]],[[-59,-47],[0,-1]],[[-59,-48],[1,-1]],[[-58,-49],[1,1]],[[-57,-48],[1,-1]],[[-56,-49],[0,-1]],[[-56,-50],[1,-1]],[[-55,-51],[1,1]],[[-54,-50],[1,-1]],[[-53,-51],[1,1]],[[-52,-50],[1,-1]],[[-51,-51],[1,1]],[[-50,-50],[0,1]],[[-50,-49],[1,1]],[[-49,-48],[0,1]],[[-49,-47],[1,1]],[[-48,-46],[1,-1]],[[9,-75],[1,1]],[[10,-74],[0,1]],[[10,-73],[1,1]],[[11,-72],[0,1]],[[11,-71],[1,1]],[[12,-70],[1,-1]],[[13,-71],[1,1]],[[14,-70],[0,1]],[[14,-69],[-1,1]],[[13,-68],[0,1]],[[13,-67],[-1,1]],[[12,-66],[0,1]],[[12,-65],[1,1]],[[13,-64],[0,1]],[[13,-63],[-1,1]],[[12,-62],[0,1]],[[12,-61],[-1,1]],[[11,-60],[0,1]],[[11,-59],[1,1]],[[12,-58],[0,1]],[[12,-57],[1,1]],[[13,-56],[0,1]],[[13,-55],[1,1]],[[14,-54],[1,-1]],[[15,-55],[0,-1]],[[15,-56],[1,-1]],[[16,-57],[1,1]],[[17,-56],[1,-1]],[[18,-57],[1,1]],[[19,-56],[1,-1]],[[20,-57],[1,1]],[[21,-56],[0,1]],[[21,-55],[1,1]],[[22,-54],[1,-1]],[[23,-55],[1,1]],[[-3,-31],[-1,1]],[[-4,-30],[-1,-1]],[[-5,-31],[-1,1]],[[-6,-30],[-1,-1]],[[-7,-31],[-1,1]],[[-8,-30],[0,1]],[[22,-54],[0,1]],[[22,-49],[1,1]],[[2,-33],[0,-1]],[[2,-34],[1,-1]],[[3,-35],[0,-1]],[[3,-36],[1,-1]],[[4,-37],[0,-1]],[[4,-38],[-1,-1]],[[3,-39],[-1,1]],[[2,-38],[-1,-1]],[[1,-39],[0,-1]],[[1,-40],[-1,-1]],[[0,-41],[0,-1]],[[0,-42],[-1,-1]],[[-1,-43],[0,-1]],[[-1,-44],[1,-1]],[[0,-45],[0,-1]],[[0,-46],[1,-1]],[[-18,-17],[1,1]],[[-17,-16],[1,-1]],[[-16,-17],[0,-1]],[[-16,-18],[1,-1]],[[-15,-19],[1,1]],[[0,-1],[0,-1]],[[0,-2],[1,-1]],[[1,-3],[1,1]],[[2,-2],[0,1]],[[3,-11],[-1,1]],[[2,-10],[-1,-1]],[[1,-11],[-1,1]],[[0,-10],[-1,-1]],[[-1,-11],[-1,1]],[[-2,-10],[0,1]],[[-2,-9],[1,1]],[[-1,-8],[1,-1]],[[0,-9],[1,1]],[[1,-8],[1,-1]],[[2,-9],[1,1]],[[3,-8],[0,1]],[[3,-7],[-1,1]],[[2,-6],[0,1]],[[2,-5],[-1,1]],[[1,-4],[-1,-1]],[[0,-5],[-1,1]],[[-1,-4],[-1,-1]],[[-2,-5],[-1,1]],[[-3,-4],[0,1]],[[-1,0],[1,-1]],[[21,-56],[1,-1]],[[22,-57],[0,-1]],[[22,-58],[1,-1]],[[23,-59],[1,1]],[[24,-58],[1,-1]],[[14,-78],[0,1]],[[14,-77],[-1,1]],[[13,-76],[-1,-1]],[[12,-77],[-1,1]],[[11,-76],[0,1]],[[11,-75],[-1,1]],[[-62,-69],[-1,1]],[[-63,-68],[-1,-1]],[[-64,-69],[0,-1]],[[-64,-70],[1,-1]],[[-63,-71],[0,-1]],[[-63,-72],[-1,-1]],[[-64,-73],[0,-1]],[[-64,-74],[1,-1]],[[-63,-75],[0,-1]],[[-63,-76],[-1,-1]],[[-64,-77],[0,-1]],[[-64,-78],[-1,-1]],[[-72,-57],[1,1]],[[-71,-56],[1,-1]],[[-70,-57],[0,-1]],[[-70,-58],[1,-1]],[[-69,-59],[1,1]],[[31,-63],[0,-1]],[[31,-64],[-1,-1]],[[30,-65],[-1,1]],[[29,-64],[0,1]],[[29,-63],[1,1]],[[30,-62],[1,-1]],[[1,-12],[0,1]],[[-61,-83],[0,-1]],[[-61,-84],[1,-1]],[[-60,-85],[1,1]],[[-59,-84],[0,1]],[[-59,-83],[1,1]],[[-58,-82],[1,-1]],[[-57,-83],[1,1]],[[-56,-82],[1,-1]],[[-55,-83],[1,1]],[[-54,-82],[0,1]],[[-54,-81],[1,1]],[[-53,-80],[0,1]],[[-53,-79],[1,1]],[[-52,-78],[1,-1]],[[-51,-79],[1,1]],[[-50,-78],[0,1]],[[-50,-77],[-1,1]],[[-51,-76],[0,1]],[[-51,-75],[-1,1]],[[-52,-74],[0,1]],[[-48,-69],[0,-1]],[[-48,-70],[1,-1]],[[-47,-71],[0,-1]],[[-47,-72],[-1,-1]],[[-48,-73],[0,-1]],[[-48,-74],[1,-1]],[[-63,-83],[1,1]],[[-62,-82],[1,-1]],[[0,-57],[0,-1]],[[0,-58],[-1,-1]],[[-1,-59],[-1,1]],[[-2,-58],[0,1]],[[-2,-57],[1,1]],[[-1,-56],[1,-1]],[[1,-28],[-1,-1]],[[-13,-11],[1,1]],[[-12,-10],[1,-1]],[[-11,-11],[0,-1]],[[-11,-12],[1,-1]],[[-10,-13],[0,-1]],[[-10,-14],[-1,-1]],[[-11,-15],[-1,1]],[[-12,-14],[-1,-1]],[[-13,-15],[0,-1]],[[-13,-16],[1,-1]],[[-12,-17],[1,1]],[[-11,-16],[1,-1]],[[-10,-17],[1,1]],[[-9,-16],[0,1]],[[-9,-15],[1,1]],[[-8,-14],[0,1]],[[-8,-13],[1,1]],[[-7,-12],[1,-1]],[[31,-63],[1,1]],[[32,-62],[1,-1]],[[33,-63],[1,1]],[[34,-62],[1,-1]],[[36,-69],[-1,1]],[[35,-68],[-1,-1]],[[34,-69],[0,-1]],[[34,-70],[-1,-1]],[[33,-71],[-1,1]],[[32,-70],[0,1]],[[32,-69],[-1,1]],[[31,-68],[0,1]],[[31,-67],[-1,1]],[[30,-66],[-1,-1]],[[29,-67],[-1,1]],[[28,-66],[-1,-1]],[[27,-67],[-1,1]],[[26,-66],[0,1]],[[27,-63],[1,1]],[[28,-62],[1,-1]],[[-22,-18],[-1,-1]],[[1,0],[-1,-1]],[[-25,-24],[0,1]],[[-25,-23],[1,1]],[[-24,-22],[1,-1]],[[-28,-45],[0,-1]],[[-28,-46],[-1,-1]],[[-29,-47],[0,-1]],[[-29,-48],[-1,-1]],[[-30,-49],[0,-1]],[[-30,-50],[-1,-1]],[[-31,-51],[0,-1]],[[-31,-52],[-1,-1]],[[-32,-53],[0,-1]],[[-32,-54],[1,-1]],[[-31,-55],[0,-1]],[[-31,-56],[1,-1]],[[-30,-57],[0,-1]],[[-30,-58],[-1,-1]],[[-31,-59],[0,-1]],[[-31,-60],[1,-1]],[[-30,-61],[1,1]],[[-29,-60],[1,-1]],[[-28,-61],[1,1]],[[-27,-60],[1,-1]],[[-27,-39],[0,-1]],[[-27,-40],[-1,-1]],[[-29,-40],[0,1]],[[-29,-39],[1,1]],[[-28,-38],[1,-1]],[[12,-77],[0,-1]],[[10,-77],[1,1]],[[-54,-65],[0,-1]],[[-51,-63],[-1,1]],[[-52,-62],[-1,-1]],[[-24,-57],[-1,1]],[[-25,-56],[0,1]],[[-25,-55],[1,1]],[[-24,-54],[1,-1]],[[-11,-28],[-1,-1]],[[-12,-29],[-1,1]],[[-13,-28],[0,1]],[[0,-30],[-1,-1]],[[-1,-31],[-1,1]],[[-57,-44],[1,-1]],[[-56,-45],[1,1]],[[-55,-44],[1,-1]],[[-54,-45],[1,1]],[[-53,-44],[1,-1]],[[-52,-45],[1,1]],[[-51,-44],[0,1]],[[-51,-43],[1,1]],[[-50,-42],[0,1]],[[-50,-41],[1,1]],[[-49,-40],[1,-1]],[[-11,-15],[0,-1]],[[-59,-47],[-1,1]],[[-70,-57],[1,1]],[[16,-37],[1,1]],[[17,-36],[0,1]],[[23,-47],[-1,1]],[[22,-46],[-1,-1]],[[21,-47],[-1,1]],[[20,-46],[-1,-1]],[[19,-47],[-1,1]],[[18,-46],[0,1]],[[18,-45],[1,1]],[[19,-44],[0,1]],[[19,-43],[1,1]],[[20,-42],[0,1]],[[20,-41],[-1,1]],[[19,-40],[-1,-1]],[[18,-41],[-1,1]],[[17,-40],[0,1]],[[17,-39],[-1,1]],[[16,-38],[-1,-1]],[[15,-39],[-1,1]],[[14,-38],[0,1]],[[14,-37],[1,1]],[[15,-36],[1,-1]],[[-45,-44],[-1,-1]],[[-37,-19],[0,-1]],[[-37,-20],[1,-1]],[[-36,-21],[0,-1]],[[-36,-22],[-1,-1]],[[-37,-23],[-1,1]],[[-38,-22],[-1,-1]],[[-39,-23],[0,-1]],[[-39,-24],[-1,-1]],[[-40,-25],[0,-1]],[[-40,-26],[-1,-1]],[[-41,-27],[0,-1]],[[-41,-28],[1,-1]],[[-40,-29],[0,-1]],[[-40,-30],[1,-1]],[[-39,-31],[0,-1]],[[-39,-32],[-1,-1]],[[-40,-33],[0,-1]],[[-40,-34],[1,-1]],[[-39,-35],[1,1]],[[-38,-34],[1,-1]],[[-37,-35],[1,1]],[[-36,-34],[1,-1]],[[-33,-39],[0,-1]],[[-33,-40],[-1,-1]],[[-34,-41],[-1,1]],[[-35,-40],[-1,-1]],[[-36,-41],[0,-1]],[[-36,-42],[-1,-1]],[[-37,-43],[0,-1]],[[-37,-44],[-1,-1]],[[-38,-45],[-1,1]],[[-39,-44],[-1,-1]],[[-40,-45],[-1,1]],[[-41,-44],[-1,-1]],[[-42,-45],[-1,1]],[[-43,-44],[0,1]],[[-43,-43],[-1,1]],[[-44,-42],[-1,-1]],[[-45,-43],[0,-1]],[[4,-57],[1,1]],[[5,-56],[1,-1]],[[6,-57],[0,-1]],[[6,-58],[1,-1]],[[7,-59],[1,1]],[[8,-58],[1,-1]],[[9,-59],[1,1]],[[10,-58],[1,-1]],[[4,-73],[1,1]],[[5,-72],[0,1]],[[5,-71],[-1,1]],[[4,-70],[0,1]],[[4,-69],[1,1]],[[5,-68],[1,-1]],[[6,-69],[1,1]],[[7,-68],[1,-1]],[[8,-69],[1,1]],[[9,-68],[0,1]],[[9,-67],[-1,1]],[[8,-66],[0,1]],[[8,-65],[-1,1]],[[7,-64],[0,1]],[[7,-63],[-1,1]],[[6,-62],[-1,-1]],[[5,-63],[-1,1]],[[4,-62],[-1,-1]],[[3,-63],[-1,1]],[[2,-62],[0,1]],[[2,-57],[1,1]],[[3,-56],[1,-1]],[[-24,-25],[0,-1]],[[-24,-26],[1,-1]],[[-23,-27],[1,1]],[[-22,-26],[0,1]],[[-22,-25],[-1,1]],[[-11,-31],[0,-1]],[[-11,-32],[-1,-1]],[[-12,-33],[0,-1]],[[-12,-34],[1,-1]],[[-11,-35],[1,1]],[[-10,-34],[1,-1]],[[-9,-35],[0,-1]],[[-9,-36],[-1,-1]],[[-10,-37],[0,-1]],[[-10,-38],[-1,-1]],[[-12,-29],[0,-1]],[[-12,-30],[1,-1]],[[-17,-11],[0,-1]],[[-17,-12],[-1,-1]],[[-18,-13],[0,-1]],[[-18,-14],[1,-1]],[[-17,-15],[1,1]],[[-16,-14],[1,-1]],[[-15,-16],[-1,-1]],[[-18,-10],[1,-1]],[[-53,-64],[1,-1]],[[16,-30],[-1,-1]],[[15,-31],[-1,1]],[[14,-30],[0,1]],[[14,-29],[-1,1]],[[13,-28],[-1,-1]],[[12,-29],[0,-1]],[[12,-30],[-1,-1]],[[11,-31],[-1,1]],[[10,-30],[-1,-1]],[[9,-31],[0,-1]],[[9,-32],[-1,-1]],[[8,-33],[0,-1]],[[8,-34],[-1,-1]],[[7,-35],[0,-1]],[[7,-36],[1,-1]],[[8,-37],[0,-1]],[[8,-38],[1,-1]],[[9,-39],[0,-1]],[[9,-40],[-1,-1]],[[-22,-53],[1,1]],[[-21,-52],[1,-1]],[[-20,-53],[1,1]],[[-19,-52],[1,-1]],[[-18,-53],[0,-1]],[[-18,-54],[1,-1]],[[-17,-55],[1,1]],[[-16,-54],[1,-1]],[[-15,-55],[1,1]],[[-14,-54],[1,-1]],[[-13,-55],[1,1]],[[-12,-54],[0,1]],[[-12,-53],[1,1]],[[-11,-52],[0,1]],[[-11,-51],[1,1]],[[-10,-50],[1,-1]],[[-9,-51],[0,-1]],[[-9,-52],[1,-1]],[[-8,-53],[1,1]],[[-7,-52],[1,-1]],[[-6,-53],[1,1]],[[-5,-52],[1,-1]],[[-4,-53],[0,-1]],[[-4,-54],[1,-1]],[[-3,-55],[0,-1]],[[-3,-56],[1,-1]],[[-1,-59],[0,-1]],[[-1,-60],[1,-1]],[[-51,-23],[0,-1]],[[-51,-24],[1,-1]],[[-50,-25],[1,1]],[[-49,-24],[1,-1]],[[-48,-25],[1,1]],[[-47,-24],[1,-1]],[[-54,-25],[1,1]],[[-53,-24],[0,1]],[[-53,-23],[1,1]],[[-52,-22],[1,-1]],[[-59,-83],[-1,1]],[[-60,-82],[0,1]],[[-60,-81],[1,1]],[[-59,-80],[0,1]],[[-59,-79],[1,1]],[[-58,-78],[0,1]],[[-58,-77],[-1,1]],[[-59,-76],[-1,-1]],[[-60,-77],[-1,1]],[[-61,-76],[0,1]],[[-61,-75],[-1,1]],[[-62,-74],[-1,-1]],[[-37,-7],[-1,1]],[[-38,-6],[0,1]],[[-38,-5],[-1,1]],[[-27,-39],[1,1]],[[-26,-38],[1,-1]],[[-25,-39],[1,1]],[[-24,-38],[0,1]],[[-24,-37],[1,1]],[[-23,-36],[0,1]],[[-23,-35],[1,1]],[[-22,-34],[1,-1]],[[-16,-9],[0,-1]],[[-16,-10],[-1,-1]],[[-16,-13],[0,-1]],[[-17,-12],[1,-1]],[[-11,-31],[1,1]],[[-10,-30],[0,1]],[[-15,-11],[0,-1]],[[-15,-12],[-1,-1]],[[-16,-10],[1,-1]],[[13,-79],[0,-1]],[[13,-80],[1,-1]],[[14,-81],[1,1]],[[15,-80],[0,1]],[[-56,-53],[1,1]],[[-55,-52],[0,1]],[[-36,-62],[0,1]],[[-36,-61],[-1,1]],[[-37,-60],[0,1]],[[-37,-59],[-1,1]],[[-38,-58],[-1,-1]],[[-39,-59],[-1,1]],[[-40,-58],[0,1]],[[-40,-57],[-1,1]],[[-41,-56],[0,1]],[[-41,-55],[-1,1]],[[-42,-54],[-1,-1]],[[-43,-55],[-1,1]],[[-44,-54],[-1,-1]],[[-45,-55],[-1,1]],[[-46,-54],[0,1]],[[-46,-53],[-1,1]],[[-47,-52],[-1,-1]],[[-48,-53],[0,-1]],[[-48,-54],[-1,-1]],[[-49,-55],[0,-1]],[[-49,-56],[-1,-1]],[[-58,-54],[0,1]],[[-58,-53],[1,1]],[[-57,-52],[1,-1]],[[22,-50],[-1,-1]],[[21,-51],[-1,1]],[[-39,-63],[0,-1]],[[-39,-64],[-1,-1]],[[-40,-65],[-1,1]],[[-41,-64],[0,1]],[[-41,-63],[-1,1]],[[-42,-62],[-1,-1]],[[-43,-63],[0,-1]],[[-43,-64],[-1,-1]],[[-39,-59],[0,-1]],[[-39,-60],[-1,-1]],[[-40,-61],[0,-1]],[[-40,-62],[1,-1]],[[-20,-78],[-1,-1]],[[-21,-79],[-1,1]],[[-6,-10],[-1,-1]],[[-7,-11],[-1,1]],[[-8,-10],[0,1]],[[-8,-9],[-1,1]],[[-9,-8],[-1,-1]],[[-10,-9],[0,-1]],[[-10,-10],[-1,-1]],[[-14,-9],[1,1]],[[-13,-8],[0,1]],[[-13,-7],[1,1]],[[15,-36],[0,1]],[[15,-35],[1,1]],[[-55,-23],[1,1]],[[-54,-22],[1,-1]],[[30,-62],[0,1]],[[30,-61],[-1,1]],[[29,-60],[-1,-1]],[[28,-61],[0,-1]],[[15,-39],[0,-1]],[[15,-40],[-1,-1]],[[14,-41],[0,-1]],[[14,-42],[-1,-1]],[[2,-73],[-1,1]],[[1,-72],[0,1]],[[1,-71],[1,1]],[[2,-70],[0,1]],[[2,-69],[-1,1]],[[1,-68],[-1,-1]],[[0,-69],[-1,1]],[[-1,-68],[0,1]],[[-1,-67],[-1,1]],[[-2,-66],[0,1]],[[1,-71],[-1,1]],[[0,-70],[0,1]],[[-43,-51],[0,-1]],[[-43,-52],[-1,-1]],[[-44,-53],[-1,1]],[[-45,-52],[0,1]],[[-45,-51],[1,1]],[[-44,-50],[1,-1]],[[-1,-11],[0,-1]],[[-1,-12],[1,-1]],[[-9,-23],[1,1]],[[-8,-22],[0,1]],[[-8,-21],[1,1]],[[-7,-20],[0,1]],[[-7,-19],[1,1]],[[-6,-18],[1,-1]],[[-5,-19],[0,-1]],[[-5,-20],[1,-1]],[[-4,-21],[0,-1]],[[-4,-22],[-1,-1]],[[-5,-23],[-1,1]],[[-6,-22],[-1,-1]],[[-7,-23],[0,-1]],[[-7,-24],[1,-1]],[[-6,-25],[1,1]],[[-5,-24],[1,-1]],[[-4,-25],[0,-1]],[[-4,-26],[1,-1]],[[-3,-27],[1,1]],[[-2,-26],[1,-1]],[[-1,-27],[1,1]],[[0,-26],[1,-1]],[[5,-27],[0,-1]],[[4,-29],[-1,1]],[[3,-28],[0,1]],[[3,-27],[1,1]],[[4,-26],[1,-1]],[[-21,-79],[0,-1]],[[-66,-61],[0,-1]],[[-67,-60],[1,-1]],[[-48,-37],[0,-1]],[[-48,-38],[-1,-1]],[[-49,-39],[-1,1]],[[-50,-38],[-1,-1]],[[-51,-39],[-1,1]],[[-52,-38],[-1,-1]],[[-53,-39],[-1,1]],[[-54,-38],[-1,-1]],[[-55,-39],[-1,1]],[[-56,-38],[0,1]],[[-56,-37],[1,1]],[[-55,-36],[0,1]],[[-55,-35],[-1,1]],[[-56,-34],[-1,-1]],[[-55,-27],[0,-1]],[[-55,-28],[1,-1]],[[-54,-29],[1,1]],[[-53,-28],[1,-1]],[[-52,-29],[1,1]],[[-51,-28],[1,-1]],[[-50,-29],[0,-1]],[[-50,-30],[1,-1]],[[-49,-31],[0,-1]],[[-49,-32],[1,-1]],[[-48,-33],[0,-1]],[[-48,-34],[-1,-1]],[[-49,-35],[0,-1]],[[-49,-36],[1,-1]],[[-41,-64],[-1,-1]],[[-42,-65],[-1,1]],[[-60,-65],[0,-1]],[[-60,-66],[-1,-1]],[[-62,-65],[1,1]],[[-61,-64],[1,-1]],[[6,-57],[1,1]],[[7,-56],[0,1]],[[7,-55],[-1,1]],[[6,-54],[0,1]],[[6,-53],[-1,1]],[[5,-52],[0,1]],[[5,-51],[1,1]],[[6,-50],[0,1]],[[6,-49],[1,1]],[[7,-48],[1,-1]],[[8,-49],[0,-1]],[[8,-50],[-1,-1]],[[7,-51],[0,-1]],[[7,-52],[1,-1]],[[8,-53],[1,1]],[[9,-52],[1,-1]],[[10,-53],[1,1]],[[11,-52],[0,1]],[[11,-51],[1,1]],[[12,-50],[0,1]],[[12,-49],[1,1]],[[13,-48],[1,-1]],[[20,-53],[0,-1]],[[20,-54],[1,-1]],[[-10,-14],[1,-1]],[[22,-46],[0,1]],[[22,-45],[1,1]],[[23,-44],[1,-1]],[[-64,-70],[-1,-1]],[[-65,-71],[-1,1]],[[-66,-70],[0,1]],[[-66,-69],[-1,1]],[[-67,-68],[0,1]],[[-67,-67],[1,1]],[[-66,-66],[0,1]],[[-66,-65],[-1,1]],[[-67,-64],[0,1]],[[-37,-60],[-1,-1]],[[-38,-61],[-1,1]],[[18,-78],[0,1]],[[18,-77],[1,1]],[[19,-76],[0,1]],[[19,-75],[-1,1]],[[18,-74],[0,1]],[[18,-73],[1,1]],[[19,-72],[0,1]],[[19,-71],[1,1]],[[20,-70],[1,-1]],[[21,-71],[0,-1]],[[21,-72],[1,-1]],[[22,-73],[0,-1]],[[-36,-2],[-1,-1]],[[-37,-3],[0,-1]],[[-37,-4],[-1,-1]],[[-58,-81],[0,-1]],[[-59,-80],[1,-1]],[[-8,-26],[-1,-1]],[[-9,-27],[-1,1]],[[-10,-26],[0,1]],[[-10,-25],[-1,1]],[[-11,-24],[-1,-1]],[[-12,-25],[0,-1]],[[30,-66],[0,1]],[[28,-77],[1,1]],[[29,-76],[0,1]],[[29,-75],[-1,1]],[[28,-74],[-1,-1]],[[27,-75],[-1,1]],[[26,-74],[0,1]],[[26,-73],[-1,1]],[[25,-72],[-1,-1]],[[33,-71],[0,-1]],[[33,-72],[-1,-1]],[[32,-73],[0,-1]],[[32,-74],[1,-1]],[[33,-75],[0,-1]],[[33,-76],[-1,-1]],[[32,-77],[0,-1]],[[8,-69],[0,-1]],[[8,-70],[-1,-1]],[[7,-71],[-1,1]],[[6,-70],[-1,-1]],[[-21,-55],[0,-1]],[[-21,-56],[-1,-1]],[[-22,-57],[-1,1]],[[-22,-54],[1,-1]],[[4,-37],[1,1]],[[5,-36],[1,-1]],[[6,-37],[1,1]],[[-14,-6],[1,-1]],[[-31,-44],[1,-1]],[[-30,-45],[0,-1]],[[-30,-46],[-1,-1]],[[-31,-47],[0,-1]],[[-31,-48],[1,-1]],[[-32,-53],[-1,1]],[[-33,-52],[-1,-1]],[[-34,-53],[-1,1]],[[-35,-52],[0,1]],[[-35,-51],[1,1]],[[-34,-50],[0,1]],[[-34,-49],[-1,1]],[[2,-13],[0,-1]],[[2,-14],[-1,-1]],[[1,-15],[-1,1]],[[24,-65],[-1,1]],[[23,-64],[0,1]],[[23,-63],[-1,1]],[[22,-62],[0,1]],[[22,-61],[1,1]],[[23,-60],[0,1]],[[37,-59],[-1,1]],[[36,-58],[0,1]],[[36,-57],[1,1]],[[37,-56],[0,1]],[[37,-55],[-1,1]],[[36,-54],[-1,-1]],[[35,-55],[-1,1]],[[34,-54],[0,1]],[[34,-53],[-1,1]],[[33,-52],[0,1]],[[33,-51],[-1,1]],[[32,-50],[-1,-1]],[[31,-51],[-1,1]],[[30,-50],[-1,-1]],[[29,-51],[-1,1]],[[28,-50],[0,1]],[[28,-49],[1,1]],[[29,-48],[0,1]],[[29,-47],[-1,1]],[[28,-46],[0,1]],[[-58,-65],[0,-1]],[[-58,-66],[-1,-1]],[[-59,-67],[-1,1]],[[-60,-65],[1,1]],[[-59,-64],[1,-1]],[[-38,-61],[0,-1]],[[-38,-62],[1,-1]],[[13,-71],[0,-1]],[[13,-72],[1,-1]],[[14,-73],[1,1]],[[15,-72],[1,-1]],[[16,-73],[1,1]],[[17,-72],[1,-1]],[[-56,-66],[-1,-1]],[[-57,-67],[-1,1]],[[-61,-64],[0,1]],[[-61,-63],[-1,1]],[[-71,-75],[1,1]],[[-70,-74],[0,1]],[[-70,-73],[1,1]],[[-69,-72],[1,-1]],[[-68,-73],[1,1]],[[-67,-72],[1,-1]],[[-66,-73],[1,1]],[[-65,-72],[0,1]],[[-73,-76],[0,1]],[[-73,-75],[1,1]],[[-72,-74],[1,-1]],[[-57,-51],[0,-1]],[[-58,-53],[-1,1]],[[-59,-51],[1,1]],[[-58,-50],[1,-1]],[[4,-57],[0,-1]],[[4,-58],[-1,-1]],[[-38,-73],[-1,1]],[[-39,-72],[-1,-1]],[[-40,-73],[0,-1]],[[-40,-74],[-1,-1]],[[-41,-75],[0,-1]],[[-41,-76],[-1,-1]],[[-42,-77],[0,-1]],[[-42,-78],[1,-1]],[[-41,-79],[0,-1]],[[-41,-80],[-1,-1]],[[-42,-81],[-1,1]],[[-43,-80],[-1,-1]],[[-44,-81],[0,-1]],[[-45,-71],[1,1]],[[-44,-70],[1,-1]],[[-43,-71],[1,1]],[[-42,-70],[0,1]],[[-42,-69],[-1,1]],[[-43,-68],[0,1]],[[-26,-25],[-1,1]],[[-27,-24],[0,1]],[[-27,-23],[1,1]],[[-26,-22],[1,-1]],[[-26,-21],[0,-1]],[[-27,-23],[-1,1]],[[-28,-22],[0,1]],[[-28,-21],[1,1]],[[-27,-20],[1,-1]],[[-16,-54],[0,1]],[[-16,-53],[1,1]],[[-15,-52],[1,-1]],[[-14,-53],[1,1]],[[-13,-52],[0,1]],[[-13,-51],[-1,1]],[[-14,-50],[0,1]],[[-14,-49],[1,1]],[[-13,-48],[0,1]],[[-13,-47],[1,1]],[[-12,-46],[0,1]],[[-12,-45],[1,1]],[[-11,-44],[1,-1]],[[-56,-77],[0,-1]],[[-56,-78],[-1,-1]],[[-57,-79],[-1,1]],[[-58,-77],[1,1]],[[-57,-76],[1,-1]],[[-52,-17],[0,-1]],[[-52,-18],[1,-1]],[[-51,-19],[0,-1]],[[-51,-20],[1,-1]],[[-50,-21],[0,-1]],[[-50,-22],[-1,-1]],[[-54,-22],[0,1]],[[-54,-21],[-1,1]],[[-55,-19],[1,1]],[[-54,-18],[0,1]],[[-54,-17],[1,1]],[[-53,-16],[1,-1]],[[-16,-37],[1,1]],[[-15,-36],[0,1]],[[-15,-35],[1,1]],[[-14,-34],[0,1]],[[-14,-33],[1,1]],[[-13,-32],[1,-1]],[[-61,-52],[0,1]],[[-61,-51],[-1,1]],[[-62,-50],[0,1]],[[-62,-49],[-1,1]],[[-63,-48],[-1,-1]],[[-64,-49],[0,-1]],[[-64,-50],[-1,-1]],[[-65,-51],[-1,1]],[[-66,-50],[-1,-1]],[[-67,-51],[0,-1]],[[-67,-52],[-1,-1]],[[-68,-53],[0,-1]],[[-26,-69],[0,-1]],[[-26,-70],[-1,-1]],[[-27,-71],[0,-1]],[[-27,-72],[1,-1]],[[-27,-68],[1,-1]],[[9,-52],[0,1]],[[9,-51],[1,1]],[[10,-50],[0,1]],[[10,-49],[-1,1]],[[9,-48],[0,1]],[[9,-47],[-1,1]],[[8,-46],[-1,-1]],[[7,-47],[0,-1]],[[-7,-12],[0,1]],[[19,-47],[0,-1]],[[19,-48],[-1,-1]],[[18,-49],[-1,1]],[[17,-48],[-1,-1]],[[16,-49],[0,-1]],[[18,-41],[0,-1]],[[18,-42],[1,-1]],[[-45,-19],[0,-1]],[[-45,-20],[1,-1]],[[-52,-17],[1,1]],[[-51,-16],[0,1]],[[-51,-15],[1,1]],[[-50,-14],[0,1]],[[-50,-13],[1,1]],[[-49,-12],[1,-1]],[[-48,-13],[0,-1]],[[-48,-14],[1,-1]],[[-47,-15],[0,-1]],[[-47,-16],[-1,-1]],[[-48,-17],[-1,1]],[[-49,-16],[-1,-1]],[[-50,-17],[0,-1]],[[-50,-18],[1,-1]],[[-49,-19],[1,1]],[[-48,-18],[1,-1]],[[-47,-19],[1,1]],[[-46,-18],[1,-1]],[[-40,-62],[-1,-1]],[[-43,-63],[-1,1]],[[-44,-62],[0,1]],[[-44,-61],[-1,1]],[[-45,-60],[0,1]],[[-45,-59],[1,1]],[[-44,-58],[1,-1]],[[-43,-59],[0,-1]],[[-43,-60],[1,-1]],[[-42,-61],[1,1]],[[-41,-60],[1,-1]],[[-27,-47],[0,-1]],[[-27,-48],[-1,-1]],[[-28,-49],[-1,1]],[[-28,-46],[1,-1]],[[-22,-49],[1,1]],[[-21,-48],[1,-1]],[[-20,-49],[1,1]],[[-19,-48],[1,-1]],[[-18,-49],[1,1]],[[-17,-48],[1,-1]],[[-16,-49],[1,1]],[[-15,-48],[1,-1]],[[5,-27],[1,1]],[[6,-26],[1,-1]],[[-12,-45],[-1,1]],[[-13,-44],[0,1]],[[-13,-43],[-1,1]],[[-14,-42],[-1,-1]],[[-15,-43],[-1,1]],[[-16,-42],[-1,-1]],[[-17,-43],[-1,1]],[[-18,-42],[0,1]],[[-18,-41],[1,1]],[[-17,-40],[1,-1]],[[-16,-41],[1,1]],[[-15,-40],[0,1]],[[17,-12],[-1,-1]],[[16,-13],[-1,1]],[[15,-12],[0,1]],[[-29,-15],[1,1]],[[-28,-14],[0,1]],[[-28,-13],[1,1]],[[-27,-12],[1,-1]],[[-26,-13],[0,-1]],[[-26,-14],[1,-1]],[[-25,-15],[1,1]],[[-24,-14],[0,1]],[[-10,-30],[1,-1]],[[-9,-31],[0,-1]],[[-9,-32],[-1,-1]],[[-10,-33],[0,-1]],[[6,-58],[-1,-1]],[[5,-59],[-1,1]],[[-16,-85],[-1,1]],[[-17,-84],[0,1]],[[-17,-83],[1,1]],[[-16,-82],[1,-1]],[[-9,-27],[0,-1]],[[-11,-27],[1,1]],[[3,-15],[1,1]],[[4,-14],[0,1]],[[4,-13],[-1,1]],[[15,-12],[-1,-1]],[[14,-13],[0,-1]],[[14,-14],[-1,-1]],[[1,-16],[0,1]],[[2,-14],[1,-1]],[[11,-20],[0,1]],[[11,-19],[-1,1]],[[10,-18],[-1,-1]],[[9,-19],[0,-1]],[[9,-20],[1,-1]],[[6,-26],[0,1]],[[6,-25],[-1,1]],[[5,-24],[0,1]],[[-48,-42],[-1,-1]],[[-49,-43],[-1,1]],[[-60,-82],[-1,-1]],[[-60,-77],[0,-1]],[[-60,-78],[1,-1]],[[-48,-73],[-1,1]],[[-49,-72],[-1,-1]],[[-50,-73],[0,-1]],[[-50,-74],[1,-1]],[[-49,-75],[1,1]],[[20,-57],[0,-1]],[[20,-58],[1,-1]],[[21,-59],[0,-1]],[[21,-60],[1,-1]],[[-42,-33],[0,-1]],[[-42,-34],[-1,-1]],[[-44,-33],[1,1]],[[-43,-32],[1,-1]],[[-52,-62],[0,1]],[[-52,-61],[-1,1]],[[-53,-60],[-1,-1]],[[-62,-61],[-1,1]],[[-63,-60],[0,1]],[[-63,-59],[-1,1]],[[-64,-58],[0,1]],[[-36,-29],[1,1]],[[-35,-28],[0,1]],[[-35,-27],[1,1]],[[-34,-26],[0,1]],[[-34,-25],[1,1]],[[-33,-24],[1,-1]],[[-32,-25],[1,1]],[[-31,-24],[0,1]],[[-31,-23],[-1,1]],[[-32,-22],[0,1]],[[-32,-21],[-1,1]],[[-33,-20],[0,1]],[[-28,-17],[0,-1]],[[-28,-18],[1,-1]],[[-27,-19],[0,-1]],[[-39,-31],[1,1]],[[-38,-30],[0,1]],[[-38,-29],[1,1]],[[-37,-28],[1,-1]],[[-64,-62],[0,1]],[[-64,-61],[1,1]],[[28,-66],[0,1]],[[28,-65],[1,1]],[[-56,-81],[0,-1]],[[-58,-81],[1,1]],[[-57,-80],[1,-1]],[[-9,-79],[1,1]],[[-8,-78],[0,1]],[[-8,-77],[-1,1]],[[-9,-76],[0,1]],[[-9,-75],[-1,1]],[[-10,-74],[0,1]],[[-10,-73],[1,1]],[[-9,-72],[0,1]],[[-9,-71],[1,1]],[[-8,-70],[0,1]],[[-8,-69],[1,1]],[[-7,-68],[1,-1]],[[-6,-69],[1,1]],[[-5,-68],[1,-1]],[[-4,-69],[0,-1]],[[-4,-70],[1,-1]],[[-3,-71],[1,1]],[[-2,-70],[1,-1]],[[-1,-71],[0,-1]],[[-1,-72],[1,-1]],[[0,-73],[1,1]],[[-56,-45],[0,-1]],[[-56,-46],[-1,-1]],[[-57,-47],[0,-1]],[[-14,-33],[-1,1]],[[-15,-32],[-1,-1]],[[-16,-33],[-1,1]],[[-17,-32],[0,1]],[[-17,-31],[-1,1]],[[-18,-30],[-1,-1]],[[-19,-31],[-1,1]],[[-20,-30],[-1,-1]],[[16,-33],[-1,1]],[[15,-32],[-1,-1]],[[14,-33],[0,-1]],[[14,-34],[-1,-1]],[[13,-35],[-1,1]],[[12,-34],[0,1]],[[12,-33],[-1,1]],[[11,-32],[0,1]],[[24,-46],[1,-1]],[[25,-47],[0,-1]],[[25,-48],[1,-1]],[[26,-49],[0,-1]],[[26,-50],[-1,-1]],[[25,-51],[0,-1]],[[25,-52],[-1,-1]],[[-32,-22],[-1,-1]],[[-33,-23],[-1,1]],[[-34,-22],[0,1]],[[-34,-21],[-1,1]],[[-35,-20],[-1,-1]],[[-66,-61],[1,1]],[[-65,-60],[1,-1]],[[22,-57],[1,1]],[[23,-56],[0,1]],[[-8,-9],[1,1]],[[-27,-47],[1,1]],[[-26,-46],[1,-1]],[[-25,-47],[0,-1]],[[-25,-48],[1,-1]],[[-24,-49],[1,1]],[[-25,-47],[1,1]],[[-44,-41],[1,1]],[[-43,-40],[0,1]],[[-43,-39],[-1,1]],[[-44,-38],[0,1]],[[-42,-33],[1,1]],[[-41,-32],[1,-1]],[[-45,-43],[-1,1]],[[-46,-42],[0,1]],[[-46,-41],[1,1]],[[-45,-40],[1,-1]],[[-57,-79],[0,-1]],[[-16,-33],[0,-1]],[[-16,-34],[-1,-1]],[[-17,-35],[-1,1]],[[-18,-34],[0,1]],[[-18,-33],[-1,1]],[[-19,-32],[-1,-1]],[[0,-9],[0,-1]],[[-26,-46],[0,1]],[[-13,-55],[0,-1]],[[-13,-56],[1,-1]],[[-12,-57],[0,-1]],[[-12,-58],[1,-1]],[[-11,-59],[0,-1]],[[-11,-60],[-1,-1]],[[-12,-61],[0,-1]],[[-12,-62],[1,-1]],[[-11,-63],[1,1]],[[-10,-62],[1,-1]],[[-22,-57],[0,-1]],[[-22,-58],[1,-1]],[[-21,-59],[1,1]],[[-20,-58],[1,-1]],[[-19,-59],[1,1]],[[-18,-58],[1,-1]],[[-17,-59],[1,1]],[[-16,-58],[0,1]],[[-16,-57],[-1,1]],[[-17,-56],[0,1]],[[-30,-33],[0,-1]],[[-30,-34],[-1,-1]],[[-31,-35],[-1,1]],[[-32,-34],[-1,-1]],[[-33,-35],[0,-1]],[[-33,-36],[1,-1]],[[-32,-37],[1,1]],[[-31,-36],[1,-1]],[[-30,-37],[0,-1]],[[-30,-38],[-1,-1]],[[-31,-31],[0,-1]],[[-31,-32],[1,-1]],[[-24,-45],[1,1]],[[-23,-44],[0,1]],[[-23,-43],[1,1]],[[-22,-42],[0,1]],[[-22,-41],[1,1]],[[-21,-40],[1,-1]],[[-20,-41],[0,-1]],[[-20,-42],[1,-1]],[[-19,-43],[1,1]],[[-30,-46],[1,-1]],[[-68,-61],[-1,1]],[[-69,-60],[0,1]],[[23,-44],[0,1]],[[23,-43],[-1,1]],[[22,-42],[0,1]],[[22,-41],[1,1]],[[23,-40],[0,1]],[[23,-39],[1,1]],[[24,-38],[0,1]],[[28,-54],[1,-1]],[[29,-55],[0,-1]],[[29,-56],[1,-1]],[[30,-57],[0,-1]],[[30,-58],[1,-1]],[[31,-59],[0,-1]],[[31,-60],[-1,-1]],[[26,-49],[1,1]],[[27,-48],[1,-1]],[[29,-51],[0,-1]],[[29,-52],[-1,-1]],[[28,-53],[0,-1]],[[-67,-67],[-1,1]],[[-68,-66],[-1,-1]],[[-69,-67],[-1,1]],[[-70,-66],[-1,-1]],[[-71,-67],[-1,1]],[[-72,-66],[0,1]],[[-14,-13],[-1,1]],[[-15,-11],[1,1]],[[-46,-18],[0,1]],[[-46,-17],[1,1]],[[-45,-16],[0,1]],[[-45,-15],[1,1]],[[-44,-14],[1,-1]],[[-43,-15],[1,1]],[[-42,-14],[0,1]],[[-42,-13],[-1,1]],[[-43,-12],[0,1]],[[-43,-11],[-1,1]],[[-44,-10],[0,1]],[[-47,-72],[1,-1]],[[-17,-16],[0,1]],[[-42,-82],[0,1]],[[-65,-59],[0,-1]],[[-66,-58],[1,-1]],[[-51,-43],[-1,1]],[[-52,-42],[0,1]],[[-52,-41],[1,1]],[[-51,-40],[1,-1]],[[-8,-30],[-1,-1]],[[-19,-15],[1,1]],[[-74,-73],[1,1]],[[-73,-72],[1,-1]],[[-72,-73],[1,1]],[[-71,-72],[1,-1]],[[-35,-3],[0,-1]],[[-35,-4],[-1,-1]],[[-36,-5],[-1,1]],[[-25,-68],[-1,-1]],[[-38,-22],[0,1]],[[-38,-21],[1,1]],[[-4,-37],[0,-1]],[[-4,-38],[-1,-1]],[[-5,-39],[0,-1]],[[-5,-40],[-1,-1]],[[-6,-41],[-1,1]],[[-7,-40],[-1,-1]],[[-8,-41],[0,-1]],[[-8,-42],[-1,-1]],[[-9,-35],[1,1]],[[-8,-34],[1,-1]],[[-7,-35],[0,-1]],[[-7,-36],[1,-1]],[[-6,-37],[1,1]],[[-5,-36],[1,-1]],[[0,-70],[-1,-1]],[[-17,-83],[-1,1]],[[-18,-82],[0,1]],[[-19,-12],[1,-1]],[[-30,-45],[1,1]],[[26,-45],[0,-1]],[[26,-46],[-1,-1]],[[25,-44],[1,-1]],[[-5,-47],[1,1]],[[-4,-46],[0,1]],[[-4,-45],[1,1]],[[-3,-44],[0,1]],[[-3,-43],[1,1]],[[-2,-42],[1,-1]],[[-55,-79],[0,-1]],[[-55,-80],[-1,-1]],[[-56,-78],[1,-1]],[[-19,-71],[0,-1]],[[-19,-72],[-1,-1]],[[-20,-73],[-1,1]],[[-21,-72],[-1,-1]],[[-22,-73],[0,-1]],[[-8,-13],[-1,1]],[[-9,-12],[0,1]],[[-9,-11],[1,1]],[[-25,-39],[0,-1]],[[-25,-40],[-1,-1]],[[-26,-41],[-1,1]],[[-5,-23],[0,-1]],[[-3,-43],[-1,1]],[[-4,-42],[-1,-1]],[[-5,-43],[-1,1]],[[-6,-42],[0,1]],[[-56,-53],[0,-1]],[[-48,-18],[0,1]],[[-53,-39],[0,-1]],[[-53,-40],[1,-1]],[[-39,-23],[-1,1]],[[-40,-22],[0,1]],[[-40,-21],[1,1]],[[-39,-20],[1,-1]],[[20,-46],[0,1]],[[20,-45],[1,1]],[[21,-44],[1,-1]],[[-36,-5],[0,-1]],[[9,-48],[-1,-1]],[[-28,-37],[0,-1]],[[-29,-39],[-1,1]],[[-30,-37],[1,1]],[[-29,-36],[1,-1]],[[-41,-51],[0,-1]],[[-41,-52],[-1,-1]],[[-42,-53],[-1,1]],[[-45,-52],[-1,-1]],[[3,-72],[0,1]],[[3,-71],[-1,1]],[[-36,-61],[1,1]],[[-50,-29],[1,1]],[[-49,-28],[0,1]],[[-49,-27],[1,1]],[[-48,-26],[1,-1]],[[-47,-27],[0,-1]],[[-47,-28],[1,-1]],[[-46,-29],[1,1]],[[-44,-54],[0,1]],[[36,-70],[-1,-1]],[[35,-71],[-1,1]],[[-30,-65],[0,-1]],[[-30,-66],[1,-1]],[[-29,-67],[0,-1]],[[-29,-68],[1,-1]],[[-33,-71],[-1,1]],[[-34,-70],[0,1]],[[-34,-69],[1,1]],[[-33,-68],[0,1]],[[-33,-67],[1,1]],[[-32,-66],[0,1]],[[-32,-65],[1,1]],[[-31,-64],[1,-1]],[[-35,-63],[0,-1]],[[-35,-64],[1,-1]],[[-34,-65],[1,1]],[[-33,-64],[1,-1]],[[19,-44],[1,-1]],[[12,-81],[0,-1]],[[11,-80],[1,-1]],[[-21,-76],[0,1]],[[-35,-11],[1,1]],[[-34,-10],[0,1]],[[-34,-9],[-1,1]],[[-36,-10],[1,-1]],[[18,-50],[0,1]],[[20,-41],[1,1]],[[21,-40],[1,-1]],[[-10,-13],[1,1]],[[13,-80],[-1,-1]],[[29,-55],[1,1]],[[30,-54],[0,1]],[[30,-53],[1,1]],[[31,-52],[1,-1]],[[32,-53],[1,1]],[[-71,-72],[0,1]],[[-71,-71],[-1,1]],[[-72,-70],[-1,-1]],[[-73,-71],[-1,1]],[[-74,-70],[0,1]],[[-74,-69],[1,1]],[[-73,-68],[1,-1]],[[-72,-69],[1,1]],[[-71,-68],[0,1]],[[9,-51],[-1,1]],[[-9,-11],[-1,1]],[[-19,-79],[0,-1]],[[-67,-64],[-1,-1]],[[-68,-65],[-1,1]],[[-69,-64],[-1,-1]],[[-70,-65],[0,-1]],[[-71,-63],[1,1]],[[-70,-62],[1,-1]],[[-69,-63],[1,1]],[[-14,-50],[-1,-1]],[[-15,-51],[-1,1]],[[-16,-50],[0,1]],[[15,-51],[0,-1]],[[15,-52],[-1,-1]],[[14,-53],[-1,1]],[[13,-52],[-1,-1]],[[12,-53],[0,-1]],[[12,-54],[1,-1]],[[-15,-52],[0,1]],[[17,-44],[-1,-1]],[[16,-45],[-1,1]],[[15,-44],[-1,-1]],[[18,-42],[-1,-1]],[[17,-43],[0,-1]],[[4,-26],[0,1]],[[4,-25],[1,1]],[[-39,-39],[0,-1]],[[-39,-40],[-1,-1]],[[-40,-41],[-1,1]],[[-41,-40],[0,1]],[[-41,-39],[1,1]],[[-40,-38],[1,-1]],[[-20,-29],[0,-1]],[[-21,-28],[1,-1]],[[22,-58],[-1,-1]],[[-38,-57],[0,-1]],[[-40,-57],[1,1]],[[-39,-56],[1,-1]],[[-24,-21],[0,-1]],[[-27,-19],[1,1]],[[-26,-18],[1,-1]],[[-25,-19],[0,-1]],[[-25,-20],[1,-1]],[[-18,-53],[1,1]],[[-17,-52],[1,-1]],[[-73,-72],[0,1]],[[25,-60],[-1,-1]],[[24,-61],[-1,1]],[[-41,-40],[-1,-1]],[[-42,-41],[-1,1]],[[-43,-39],[1,1]],[[-42,-38],[1,-1]],[[26,-62],[-1,-1]],[[25,-63],[-1,1]],[[24,-62],[0,1]],[[-33,-20],[-1,-1]],[[-35,-20],[0,1]],[[-38,-2],[1,-1]],[[-23,-20],[-1,-1]],[[-25,-19],[1,1]],[[-57,-51],[1,1]],[[25,-64],[0,1]],[[-72,-66],[-1,-1]],[[-73,-67],[0,-1]],[[-34,-73],[0,-1]],[[23,-63],[1,1]],[[-26,-18],[0,1]],[[25,-51],[-1,1]],[[24,-49],[1,1]],[[-42,-57],[0,-1]],[[-42,-58],[-1,-1]],[[-44,-58],[0,1]],[[-44,-57],[1,1]],[[-43,-56],[1,-1]],[[-31,-71],[0,-1]],[[-31,-72],[-1,-1]],[[-32,-73],[-1,1]],[[-69,-51],[0,-1]],[[-69,-52],[-1,-1]],[[-70,-53],[-1,1]],[[-71,-52],[-1,-1]],[[-72,-53],[0,-1]],[[-72,-54],[-1,-1]],[[-70,-49],[0,-1]],[[-70,-50],[1,-1]],[[-33,-75],[1,1]],[[-32,-74],[0,1]],[[-28,-70],[1,-1]],[[23,-64],[-1,-1]],[[22,-65],[-1,1]],[[21,-64],[0,1]],[[21,-63],[1,1]],[[-38,-14],[-1,-1]],[[-39,-15],[-1,1]],[[-40,-14],[0,1]],[[-40,-13],[1,1]],[[-20,-17],[0,-1]],[[-22,-17],[1,1]],[[-21,-16],[1,-1]],[[-58,-50],[0,1]],[[23,-67],[-1,1]],[[22,-66],[0,1]],[[0,-17],[0,-1]],[[0,-18],[-1,-1]],[[-1,-19],[-1,1]],[[-2,-18],[-1,-1]],[[-3,-19],[-1,1]],[[-4,-18],[0,1]],[[-4,-17],[1,1]],[[-3,-16],[0,1]],[[-28,-21],[-1,1]],[[-29,-20],[0,1]],[[-29,-19],[1,1]],[[22,-69],[-1,1]],[[21,-68],[-1,-1]],[[20,-69],[-1,1]],[[19,-68],[-1,-1]],[[18,-69],[-1,1]],[[17,-68],[0,1]],[[17,-67],[1,1]],[[18,-66],[0,1]],[[18,-65],[-1,1]],[[17,-64],[0,1]],[[17,-63],[-1,1]],[[16,-62],[0,1]],[[16,-61],[-1,1]],[[15,-60],[-1,-1]],[[14,-61],[-1,1]],[[13,-60],[0,1]],[[13,-59],[-1,1]],[[-42,-49],[1,1]],[[-41,-48],[0,1]],[[-41,-47],[1,1]],[[-40,-46],[0,1]],[[-34,-41],[0,-1]],[[-34,-42],[1,-1]],[[-33,-43],[0,-1]],[[-33,-44],[-1,-1]],[[-34,-45],[0,-1]],[[22,-37],[0,-1]],[[22,-38],[-1,-1]],[[21,-39],[-1,1]],[[20,-38],[-1,-1]],[[19,-39],[0,-1]],[[17,-39],[1,1]],[[18,-38],[0,1]],[[18,-37],[1,1]],[[19,-36],[0,1]],[[-5,-43],[0,-1]],[[-5,-44],[-1,-1]],[[-6,-45],[-1,1]],[[-7,-44],[0,1]],[[-7,-43],[1,1]],[[-22,-69],[0,-1]],[[-22,-70],[-1,-1]],[[-23,-71],[-1,1]],[[-24,-70],[0,1]],[[-33,-47],[0,-1]],[[-33,-48],[-1,-1]],[[-32,-29],[1,1]],[[-31,-28],[0,1]],[[-31,-27],[-1,1]],[[-32,-26],[0,1]],[[-29,-16],[-1,-1]],[[-30,-17],[0,-1]],[[-30,-18],[-1,-1]],[[-31,-19],[0,-1]],[[-31,-20],[1,-1]],[[-30,-21],[1,1]],[[-33,-31],[-1,1]],[[-34,-30],[0,1]],[[-34,-29],[1,1]],[[-33,-28],[1,-1]],[[-44,-41],[0,-1]],[[-40,-13],[-1,1]],[[-41,-12],[-1,-1]],[[-40,-5],[0,-1]],[[-40,-6],[1,-1]],[[-39,-7],[1,1]],[[6,-45],[0,-1]],[[6,-46],[1,-1]],[[6,-54],[-1,-1]],[[5,-55],[-1,1]],[[4,-54],[0,1]],[[4,-53],[-1,1]],[[3,-52],[-1,-1]],[[5,-44],[1,-1]],[[20,-54],[-1,-1]],[[19,-55],[-1,1]],[[18,-54],[0,1]],[[18,-53],[-1,1]],[[17,-52],[-1,-1]],[[16,-53],[0,-1]],[[16,-54],[-1,-1]],[[7,-23],[0,-1]],[[7,-24],[-1,-1]],[[6,-22],[1,-1]],[[-21,-19],[0,-1]],[[-21,-20],[-1,-1]],[[-58,-46],[1,-1]],[[-16,-65],[0,-1]],[[-16,-66],[1,-1]],[[-15,-67],[0,-1]],[[-15,-68],[-1,-1]],[[-16,-69],[-1,1]],[[-17,-68],[-1,-1]],[[-18,-69],[0,-1]],[[-20,-69],[1,1]],[[-19,-68],[0,1]],[[-19,-67],[1,1]],[[-18,-66],[0,1]],[[-18,-65],[1,1]],[[-17,-64],[1,-1]],[[27,-51],[0,-1]],[[27,-52],[-1,-1]],[[26,-53],[-1,1]],[[26,-50],[1,-1]],[[36,-57],[-1,1]],[[35,-56],[0,1]],[[-13,-44],[-1,-1]],[[-14,-45],[-1,1]],[[-15,-44],[0,1]],[[-54,-45],[0,-1]],[[-54,-46],[-1,-1]],[[-55,-47],[0,-1]],[[-55,-48],[-1,-1]],[[-35,-40],[0,1]],[[-35,-39],[-1,1]],[[-36,-38],[0,1]],[[-36,-37],[-1,1]],[[-37,-36],[-1,-1]],[[-38,-37],[0,-1]],[[-38,-38],[-1,-1]],[[-31,-15],[-1,1]],[[-32,-14],[0,1]],[[-32,-13],[1,1]],[[-31,-12],[1,-1]],[[-30,-13],[1,1]],[[-29,-12],[0,1]],[[27,-48],[0,1]],[[27,-47],[1,1]],[[-63,-59],[1,1]],[[-62,-58],[1,-1]],[[-69,-60],[-1,-1]],[[-70,-61],[-1,1]],[[-71,-60],[0,1]],[[-71,-59],[1,1]],[[28,-54],[-1,-1]],[[27,-55],[-1,1]],[[26,-54],[0,1]],[[27,-52],[1,-1]],[[-14,-45],[0,-1]],[[-14,-46],[1,-1]],[[-19,-48],[0,1]],[[-19,-47],[1,1]],[[-18,-46],[0,1]],[[-18,-45],[1,1]],[[-17,-44],[1,-1]],[[-16,-45],[1,1]],[[26,-46],[1,-1]],[[26,-45],[1,1]],[[-16,-77],[-1,1]],[[-17,-76],[-1,-1]],[[29,-52],[1,-1]],[[-30,-66],[-1,-1]],[[-31,-67],[-1,1]],[[-33,-55],[0,-1]],[[-33,-56],[-1,-1]],[[-34,-57],[-1,1]],[[-35,-55],[1,1]],[[-34,-54],[1,-1]],[[31,-51],[0,-1]],[[-20,-21],[0,-1]],[[-20,-22],[-1,-1]],[[-21,-23],[-1,1]],[[-21,-20],[1,-1]],[[-24,-29],[0,-1]],[[-24,-30],[-1,-1]],[[-25,-31],[0,-1]],[[-25,-32],[-1,-1]],[[-26,-33],[-1,1]],[[-27,-32],[-1,-1]],[[-28,-33],[-1,1]],[[-29,-32],[0,1]],[[-29,-31],[-1,1]],[[-20,-37],[0,-1]],[[-20,-38],[-1,-1]],[[-21,-39],[-1,1]],[[-22,-38],[-1,-1]],[[-23,-39],[0,-1]],[[-23,-40],[1,-1]],[[-21,-23],[0,-1]],[[-21,-24],[-1,-1]],[[-25,-27],[1,1]],[[-21,-24],[1,-1]],[[-26,-26],[1,-1]],[[-11,-32],[1,-1]],[[-19,-27],[0,-1]],[[-19,-28],[-1,-1]],[[-20,-26],[1,-1]],[[34,-54],[-1,-1]],[[33,-55],[-1,1]],[[32,-54],[0,1]],[[3,-55],[0,-1]],[[2,-54],[1,-1]],[[-12,-30],[-1,-1]],[[-13,-31],[-1,1]],[[-14,-30],[0,1]],[[-14,-29],[-1,1]],[[-15,-28],[-1,-1]],[[-16,-29],[0,-1]],[[-16,-30],[-1,-1]],[[35,-56],[-1,-1]],[[34,-57],[0,-1]],[[34,-58],[1,-1]],[[35,-59],[0,-1]],[[35,-60],[1,-1]],[[-17,-44],[0,1]],[[1,-67],[0,-1]],[[-1,-67],[1,1]],[[0,-66],[1,-1]],[[13,-68],[-1,-1]],[[12,-69],[-1,1]],[[11,-68],[0,1]],[[11,-67],[1,1]],[[7,-43],[0,-1]],[[7,-44],[-1,-1]],[[6,-42],[1,-1]],[[-21,-15],[0,-1]],[[-23,-16],[0,1]],[[-23,-15],[1,1]],[[-22,-14],[1,-1]],[[-46,-17],[-1,1]],[[-47,-15],[1,1]],[[-46,-14],[1,-1]],[[6,-61],[1,1]],[[7,-60],[0,1]],[[11,-67],[-1,1]],[[10,-66],[-1,-1]],[[4,-62],[0,1]],[[4,-61],[1,1]],[[5,-60],[1,-1]],[[8,-42],[-1,-1]],[[-56,-38],[-1,-1]],[[-57,-36],[1,-1]],[[-49,-16],[0,1]],[[-49,-15],[1,1]],[[-60,-49],[1,1]],[[-5,-11],[1,1]],[[-4,-10],[0,1]],[[-4,-9],[1,1]],[[-3,-8],[1,-1]],[[36,-66],[-1,-1]],[[35,-67],[-1,1]],[[34,-66],[0,1]],[[34,-65],[1,1]],[[-33,-67],[-1,1]],[[-34,-66],[0,1]],[[-32,-49],[0,-1]],[[-32,-50],[-1,-1]],[[-33,-51],[-1,1]],[[-33,-48],[1,-1]],[[-6,-45],[0,-1]],[[-8,-46],[0,1]],[[-8,-45],[1,1]],[[-45,-40],[0,1]],[[-45,-39],[1,1]],[[-30,-18],[1,-1]],[[11,-32],[-1,-1]],[[10,-33],[0,-1]],[[10,-34],[-1,-1]],[[9,-35],[0,-1]],[[9,-36],[1,-1]],[[10,-37],[1,1]],[[11,-36],[1,-1]],[[12,-37],[0,-1]],[[12,-38],[1,-1]],[[13,-39],[0,-1]],[[13,-40],[-1,-1]],[[12,-41],[-1,1]],[[11,-40],[0,1]],[[11,-39],[-1,1]],[[10,-38],[-1,-1]],[[-57,-55],[0,-1]],[[-57,-56],[-1,-1]],[[-58,-57],[0,-1]],[[-58,-58],[-1,-1]],[[-62,-58],[0,1]],[[-62,-57],[1,1]],[[-61,-56],[0,1]],[[-61,-55],[-1,1]],[[32,-66],[-1,-1]],[[33,-63],[0,-1]],[[33,-64],[-1,-1]],[[32,-65],[0,-1]],[[-31,-59],[-1,1]],[[-32,-58],[-1,-1]],[[-33,-59],[-1,1]],[[-34,-58],[0,1]],[[-13,-31],[0,-1]],[[-15,-32],[0,1]],[[-15,-31],[1,1]],[[-24,-73],[1,1]],[[-23,-72],[1,-1]],[[-32,-34],[0,1]],[[-32,-33],[1,1]],[[-19,-39],[0,-1]],[[-19,-40],[-1,-1]],[[-21,-40],[0,1]],[[-20,-38],[1,-1]],[[-31,-12],[0,1]],[[-31,-11],[-1,1]],[[-18,-37],[0,-1]],[[-18,-38],[-1,-1]],[[-72,-69],[0,-1]],[[-31,-35],[0,-1]],[[-30,-70],[0,1]],[[-30,-69],[1,1]],[[-16,-38],[-1,-1]],[[-17,-39],[-1,1]],[[-29,-35],[0,-1]],[[-30,-34],[1,-1]],[[-32,-70],[0,1]],[[-32,-69],[1,1]],[[-31,-68],[1,-1]],[[35,-59],[1,1]],[[28,-50],[-1,-1]],[[-8,-61],[0,-1]],[[-10,-62],[0,1]],[[-10,-61],[1,1]],[[-9,-60],[1,-1]],[[-28,-33],[0,-1]],[[-28,-34],[-1,-1]],[[-30,-33],[1,1]],[[5,-59],[0,-1]],[[4,-61],[-1,1]],[[-42,-53],[0,-1]],[[-70,-69],[0,-1]],[[-70,-70],[-1,-1]],[[-71,-68],[1,-1]],[[-15,-31],[-1,1]],[[-33,-52],[0,1]],[[3,-67],[0,-1]],[[3,-68],[-1,-1]],[[1,-67],[1,1]],[[2,-66],[1,-1]],[[-11,-7],[0,-1]],[[-11,-8],[-1,-1]],[[-12,-9],[-1,1]],[[-35,-12],[0,1]],[[26,-61],[1,1]],[[27,-60],[1,-1]],[[5,-35],[0,-1]],[[3,-35],[1,1]],[[4,-34],[1,-1]],[[-30,-61],[0,-1]],[[-30,-62],[-1,-1]],[[-31,-63],[-1,1]],[[-32,-62],[0,1]],[[-32,-61],[-1,1]],[[-33,-60],[-1,-1]],[[-9,-59],[0,-1]],[[-10,-61],[-1,1]],[[-11,-59],[1,1]],[[-10,-58],[1,-1]],[[38,-53],[-1,1]],[[37,-52],[-1,-1]],[[36,-53],[-1,1]],[[35,-52],[0,1]],[[35,-51],[1,1]],[[36,-50],[0,1]],[[36,-49],[-1,1]],[[35,-48],[-1,-1]],[[34,-49],[0,-1]],[[34,-50],[-1,-1]],[[-46,-42],[-1,-1]],[[-47,-40],[1,-1]],[[-61,-84],[-1,-1]],[[-62,-85],[-1,1]],[[-60,-73],[0,-1]],[[-60,-74],[-1,-1]],[[-62,-74],[0,1]],[[-62,-73],[1,1]],[[-61,-72],[1,-1]],[[-51,-56],[0,1]],[[-51,-55],[1,1]],[[-50,-54],[0,1]],[[-50,-53],[-1,1]],[[-51,-52],[0,1]],[[-63,-72],[1,-1]],[[14,-81],[0,-1]],[[-61,-71],[0,-1]],[[-63,-71],[1,1]],[[-42,-62],[0,1]],[[-27,-15],[0,-1]],[[-28,-14],[1,-1]],[[16,-78],[0,1]],[[16,-77],[1,1]],[[17,-76],[1,-1]],[[-62,-82],[0,1]],[[-62,-81],[1,1]],[[-61,-80],[1,-1]],[[-32,-62],[-1,-1]],[[-33,-63],[-1,1]],[[-47,-35],[0,-1]],[[-47,-36],[-1,-1]],[[-48,-34],[1,-1]],[[-10,-37],[-1,1]],[[-11,-36],[0,1]],[[-25,-48],[-1,-1]],[[-26,-49],[-1,1]],[[-27,-67],[-1,1]],[[-28,-66],[-1,-1]],[[-45,-55],[0,-1]],[[-45,-56],[-1,-1]],[[-46,-57],[-1,1]],[[-47,-56],[-1,-1]],[[-48,-57],[0,-1]],[[-48,-58],[1,-1]],[[-47,-59],[1,1]],[[-46,-58],[1,-1]],[[-45,-60],[-1,-1]],[[-46,-61],[-1,1]],[[-47,-60],[-1,-1]],[[-59,-63],[0,-1]],[[-61,-63],[1,1]],[[-60,-62],[1,-1]],[[-24,-49],[0,-1]],[[-24,-50],[-1,-1]],[[-25,-51],[-1,1]],[[-26,-50],[0,1]],[[18,-14],[-1,-1]],[[17,-15],[-1,1]],[[16,-14],[0,1]],[[-23,-51],[-1,1]],[[7,-40],[0,1]],[[7,-39],[-1,1]],[[6,-38],[0,1]],[[-42,-65],[0,-1]],[[-25,-51],[0,-1]],[[-25,-52],[1,-1]],[[-24,-53],[0,-1]],[[-40,-65],[0,-1]],[[-46,-33],[0,-1]],[[-46,-34],[-1,-1]],[[-48,-33],[1,1]],[[-47,-32],[1,-1]],[[-49,-15],[-1,1]],[[-26,-14],[-1,-1]],[[-4,-5],[0,-1]],[[-4,-6],[-1,-1]],[[-5,-7],[-1,1]],[[-5,-4],[1,-1]],[[5,-67],[0,-1]],[[4,-69],[-1,1]],[[3,-67],[1,1]],[[4,-66],[1,-1]],[[2,-6],[-1,-1]],[[1,-7],[-1,1]],[[0,-6],[-1,-1]],[[-1,-7],[0,-1]],[[-4,-9],[-1,1]],[[-5,-8],[0,1]],[[-38,-65],[-1,1]],[[-39,-63],[1,1]],[[-43,-15],[0,-1]],[[-43,-16],[1,-1]],[[-42,-17],[0,-1]],[[-42,-18],[1,-1]],[[-52,-53],[0,-1]],[[-52,-54],[1,-1]],[[-55,-55],[1,1]],[[-54,-54],[0,1]],[[-54,-53],[1,1]],[[-53,-52],[1,-1]],[[-74,-74],[1,-1]],[[0,-41],[-1,1]],[[-1,-40],[0,1]],[[-1,-39],[1,1]],[[0,-38],[1,-1]],[[-19,-35],[1,1]],[[-20,-34],[1,-1]],[[-46,-29],[0,-1]],[[-46,-30],[1,-1]],[[-46,-37],[-1,1]],[[-50,-17],[-1,1]],[[-44,-61],[1,1]],[[0,-37],[0,-1]],[[-1,-39],[-1,1]],[[-2,-38],[0,1]],[[-2,-37],[1,1]],[[-1,-36],[1,-1]],[[2,-17],[0,-1]],[[2,-18],[-1,-1]],[[1,-19],[0,-1]],[[1,-20],[-1,-1]],[[0,-21],[-1,1]],[[-1,-20],[-1,-1]],[[-2,-21],[-1,1]],[[-3,-20],[0,1]],[[1,-35],[0,-1]],[[1,-36],[-1,-1]],[[-1,-36],[0,1]],[[-1,-35],[1,1]],[[0,-34],[1,-1]],[[21,-47],[0,-1]],[[20,-49],[-1,1]],[[-2,-37],[-1,1]],[[-3,-36],[0,1]],[[-3,-35],[1,1]],[[-2,-34],[0,1]],[[-39,-15],[0,-1]],[[20,-73],[0,-1]],[[20,-74],[-1,-1]],[[19,-72],[1,-1]],[[1,-8],[0,1]],[[-46,-46],[1,-1]],[[-45,-47],[1,1]],[[-44,-46],[1,-1]],[[-43,-47],[1,1]],[[-42,-46],[0,1]],[[-1,-47],[0,-1]],[[-3,-48],[0,1]],[[-3,-47],[1,1]],[[-2,-46],[1,-1]],[[-21,-71],[0,-1]],[[-23,-72],[0,1]],[[-22,-70],[1,-1]],[[-33,-44],[1,-1]],[[-37,-59],[1,1]],[[-4,-46],[1,-1]],[[-18,-33],[1,1]],[[15,-48],[1,-1]],[[-19,-32],[0,1]],[[-24,-53],[1,1]],[[-24,-30],[1,-1]],[[-23,-31],[1,1]],[[2,-9],[0,-1]],[[-25,-16],[0,1]],[[3,-16],[0,1]],[[4,-14],[1,-1]],[[3,-8],[1,-1]],[[-13,-56],[-1,-1]],[[-14,-57],[-1,1]],[[-15,-56],[0,1]],[[-15,-56],[-1,-1]],[[35,-71],[0,-1]],[[35,-72],[1,-1]],[[36,-73],[1,1]],[[-6,-61],[0,-1]],[[-6,-62],[-1,-1]],[[-11,-52],[1,-1]],[[-10,-53],[0,-1]],[[-10,-54],[-1,-1]],[[-11,-55],[0,-1]],[[-11,-56],[1,-1]],[[-10,-57],[1,1]],[[-9,-56],[1,-1]],[[-8,-57],[0,-1]],[[-8,-58],[1,-1]],[[-7,-59],[0,-1]],[[-7,-60],[1,-1]],[[-42,-41],[0,-1]],[[-42,-42],[-1,-1]],[[4,-5],[0,-1]],[[4,-6],[-1,-1]],[[2,-5],[1,1]],[[3,-4],[1,-1]],[[-21,-55],[1,1]],[[-20,-54],[0,1]],[[5,-3],[0,-1]],[[5,-4],[-1,-1]],[[3,-4],[0,1]],[[3,-3],[1,1]],[[4,-2],[1,-1]],[[-36,-41],[-1,1]],[[-37,-40],[0,1]],[[-37,-39],[1,1]],[[-5,-44],[1,-1]],[[6,-5],[0,-1]],[[5,-7],[-1,1]],[[5,-4],[1,-1]],[[16,-81],[0,-1]],[[16,-82],[-1,-1]],[[15,-80],[1,-1]],[[-20,-61],[0,-1]],[[-20,-62],[-1,-1]],[[-21,-63],[0,-1]],[[-21,-64],[1,-1]],[[-20,-65],[1,1]],[[-19,-64],[1,-1]],[[-21,-59],[0,-1]],[[-21,-60],[1,-1]],[[-9,-44],[1,-1]],[[3,-71],[1,1]],[[-9,-56],[0,1]],[[-9,-55],[1,1]],[[-8,-54],[0,1]],[[32,-69],[1,1]],[[33,-68],[1,-1]],[[-8,-42],[1,-1]],[[35,-52],[-1,-1]],[[34,-50],[1,-1]],[[-45,-39],[-1,1]],[[-61,-76],[-1,-1]],[[-62,-77],[0,-1]],[[-62,-78],[-1,-1]],[[-63,-79],[0,-1]],[[-63,-80],[1,-1]],[[-58,-61],[0,-1]],[[-58,-62],[-1,-1]],[[13,-11],[0,-1]],[[13,-12],[-1,-1]],[[12,-13],[0,-1]],[[8,-13],[1,1]],[[9,-12],[0,1]],[[9,-11],[-1,1]],[[8,-10],[0,1]],[[-4,-21],[1,1]],[[-10,-41],[1,1]],[[-9,-40],[1,-1]],[[0,-66],[0,1]],[[0,-65],[-1,1]],[[33,-64],[1,-1]],[[5,-35],[1,1]],[[6,-34],[1,-1]],[[-18,-41],[-1,1]],[[-43,-44],[-1,-1]],[[-44,-45],[-1,1]],[[-44,-45],[0,-1]],[[9,-24],[0,1]],[[9,-23],[1,1]],[[-22,-77],[-1,1]],[[-23,-76],[0,1]],[[6,-38],[-1,-1]],[[5,-39],[0,-1]],[[5,-40],[1,-1]],[[2,-45],[-1,1]],[[1,-44],[0,1]],[[1,-43],[-1,1]],[[-38,-30],[1,-1]],[[-37,-31],[1,1]],[[-36,-30],[0,1]],[[-51,-67],[0,-1]],[[-51,-68],[1,-1]],[[-59,-67],[0,-1]],[[-59,-68],[1,-1]],[[-58,-69],[1,1]],[[-57,-68],[0,1]],[[-52,-66],[1,-1]],[[-62,-50],[-1,-1]],[[-63,-51],[-1,1]],[[-70,-77],[1,1]],[[-69,-76],[0,1]],[[-69,-75],[-1,1]],[[-45,-80],[1,-1]],[[12,-34],[-1,-1]],[[11,-35],[-1,1]],[[14,-13],[-1,1]],[[11,-35],[0,-1]],[[-3,-67],[0,-1]],[[-3,-68],[-1,-1]],[[-5,-68],[0,1]],[[-5,-67],[1,1]],[[-4,-66],[1,-1]],[[-2,-38],[-1,-1]],[[-3,-39],[-1,1]],[[-4,-37],[1,1]],[[-15,-63],[0,-1]],[[-15,-64],[-1,-1]],[[-17,-59],[0,-1]],[[-17,-60],[1,-1]],[[-16,-61],[0,-1]],[[-16,-62],[1,-1]],[[-53,-19],[0,-1]],[[-53,-20],[-1,-1]],[[-54,-18],[1,-1]],[[-4,-70],[-1,-1]],[[-5,-71],[-1,1]],[[-6,-70],[0,1]],[[12,-33],[1,1]],[[13,-32],[1,-1]],[[-3,-71],[0,-1]],[[-3,-72],[-1,-1]],[[-4,-73],[0,-1]],[[-4,-74],[-1,-1]],[[-5,-75],[-1,1]],[[-6,-74],[-1,-1]],[[-7,-75],[-1,1]],[[-8,-74],[0,1]],[[-8,-73],[1,1]],[[-7,-72],[0,1]],[[-7,-71],[-1,1]],[[13,-31],[0,-1]],[[12,-30],[1,-1]],[[1,-55],[-1,1]],[[0,-54],[-1,-1]],[[-1,-55],[-1,1]],[[-2,-54],[0,1]],[[-2,-53],[-1,1]],[[-3,-52],[-1,-1]],[[-14,-54],[0,1]],[[12,-17],[0,-1]],[[12,-18],[-1,-1]],[[10,-18],[0,1]],[[10,-17],[1,1]],[[11,-16],[1,-1]],[[-17,-79],[-1,1]],[[15,-31],[0,-1]],[[13,-31],[1,1]],[[4,-33],[0,-1]],[[3,-32],[1,-1]],[[-20,-49],[0,-1]],[[-20,-50],[-1,-1]],[[-21,-51],[-1,1]],[[8,-21],[0,-1]],[[8,-22],[-1,-1]],[[6,-21],[1,1]],[[7,-20],[1,-1]],[[-55,-56],[-1,-1]],[[-56,-57],[-1,1]],[[0,-45],[1,1]],[[-54,-57],[0,-1]],[[-54,-58],[-1,-1]],[[-55,-59],[-1,1]],[[-56,-58],[0,1]],[[-48,-9],[0,-1]],[[-48,-10],[-1,-1]],[[-49,-11],[-1,1]],[[-50,-10],[-1,-1]],[[-51,-11],[0,-1]],[[-51,-12],[1,-1]],[[-8,-73],[-1,1]],[[14,-29],[1,1]],[[-12,-61],[-1,1]],[[-13,-60],[-1,-1]],[[-14,-61],[0,-1]],[[-14,-62],[-1,-1]],[[-52,-42],[-1,-1]],[[-53,-43],[-1,1]],[[-54,-42],[-1,-1]],[[-55,-43],[-1,1]],[[-14,-77],[0,-1]],[[-14,-78],[-1,-1]],[[-15,-79],[0,-1]],[[-15,-80],[-1,-1]],[[-16,-81],[0,-1]],[[15,-23],[0,-1]],[[15,-24],[-1,-1]],[[14,-25],[-1,1]],[[13,-24],[0,1]],[[13,-23],[-1,1]],[[12,-22],[0,1]],[[14,-21],[0,-1]],[[14,-22],[1,-1]],[[-1,-47],[1,1]],[[-42,-29],[0,-1]],[[-42,-30],[-1,-1]],[[-43,-31],[-1,1]],[[-44,-29],[1,1]],[[-43,-28],[1,-1]],[[-46,-70],[-1,-1]],[[-60,-78],[-1,-1]],[[-61,-79],[-1,1]],[[-29,-79],[1,1]],[[-43,-31],[0,-1]],[[18,-37],[-1,1]],[[11,-23],[1,1]],[[16,-38],[0,1]],[[-36,-77],[0,-1]],[[-36,-78],[-1,-1]],[[-38,-78],[0,1]],[[-38,-77],[1,1]],[[-37,-76],[1,-1]],[[-13,-79],[0,-1]],[[-13,-80],[-1,-1]],[[-14,-81],[-1,1]],[[-14,-78],[1,-1]],[[-51,-39],[0,-1]],[[-14,-81],[0,-1]],[[-3,-44],[1,-1]],[[-2,-45],[1,1]],[[-61,-79],[0,-1]],[[-37,-76],[0,1]],[[28,-73],[0,-1]],[[26,-73],[1,1]],[[27,-72],[1,-1]],[[-13,-80],[1,-1]],[[-49,-72],[0,1]],[[-49,-71],[1,1]],[[-51,-83],[1,1]],[[-50,-82],[0,1]],[[-50,-81],[-1,1]],[[-51,-80],[0,1]],[[-52,-85],[-1,1]],[[-53,-84],[0,1]],[[-53,-83],[1,1]],[[-52,-82],[1,-1]],[[-1,-31],[0,-1]],[[12,-37],[1,1]],[[13,-36],[0,1]],[[1,-31],[0,-1]],[[3,-24],[1,-1]],[[-49,-11],[0,-1]],[[23,-72],[-1,-1]],[[14,-70],[1,-1]],[[15,-71],[1,1]],[[16,-70],[1,-1]],[[17,-71],[1,1]],[[18,-70],[0,1]],[[36,-53],[0,-1]],[[-4,-29],[0,-1]],[[-6,-30],[0,1]],[[-6,-29],[1,1]],[[-5,-28],[1,-1]],[[-41,-80],[1,-1]],[[-72,-74],[0,1]],[[17,-79],[0,-1]],[[17,-80],[-1,-1]],[[19,-79],[0,-1]],[[19,-80],[1,-1]],[[20,-81],[0,-1]],[[20,-82],[-1,-1]],[[19,-83],[0,-1]],[[-4,-18],[-1,-1]],[[-5,-15],[0,-1]],[[-5,-16],[1,-1]],[[-55,-28],[-1,-1]],[[-56,-29],[0,-1]],[[-56,-30],[-1,-1]],[[-57,-31],[0,-1]],[[-57,-32],[1,-1]],[[-56,-33],[1,1]],[[-55,-32],[1,-1]],[[-54,-33],[0,-1]],[[-54,-34],[1,-1]],[[-53,-35],[0,-1]],[[-53,-36],[1,-1]],[[-52,-37],[0,-1]],[[20,-82],[1,-1]],[[-44,-73],[0,-1]],[[-44,-74],[-1,-1]],[[-45,-75],[0,-1]],[[-45,-76],[1,-1]],[[-44,-77],[1,1]],[[-43,-76],[1,-1]],[[-45,-72],[1,-1]],[[-17,-52],[0,1]],[[-17,-51],[1,1]],[[-64,-53],[0,-1]],[[-64,-54],[-1,-1]],[[-65,-55],[-1,1]],[[-66,-54],[0,1]],[[-66,-53],[1,1]],[[-65,-52],[1,-1]],[[-52,-21],[0,-1]],[[-53,-20],[1,-1]],[[-52,-53],[1,1]],[[-66,-54],[-1,-1]],[[-65,-51],[0,-1]],[[-23,-79],[-1,1]],[[-24,-78],[0,1]],[[-24,-77],[1,1]],[[7,-24],[1,-1]],[[-23,-80],[-1,-1]],[[-24,-81],[-1,1]],[[-25,-80],[-1,-1]],[[-36,-57],[-1,1]],[[-37,-56],[-1,-1]],[[21,-72],[-1,-1]],[[-71,-75],[0,-1]],[[8,-22],[1,-1]],[[-52,-21],[1,1]],[[20,-74],[1,-1]],[[-68,-66],[0,1]],[[-41,-67],[0,-1]],[[-41,-68],[-1,-1]],[[-71,-56],[0,1]],[[-71,-55],[1,1]],[[-70,-54],[1,-1]],[[-54,-29],[0,-1]],[[-54,-30],[-1,-1]],[[-55,-31],[-1,1]],[[-44,-73],[1,1]],[[-43,-72],[0,1]],[[-35,-23],[0,-1]],[[-35,-24],[-1,-1]],[[-36,-25],[-1,1]],[[-37,-24],[0,1]],[[-36,-22],[1,-1]],[[-7,-23],[-1,1]],[[-6,-9],[1,1]],[[22,-77],[0,-1]],[[22,-78],[-1,-1]],[[21,-79],[0,-1]],[[21,-80],[1,-1]],[[21,-76],[1,-1]],[[-34,-22],[-1,-1]],[[-64,-58],[-1,-1]],[[-53,-51],[0,-1]],[[18,-45],[-1,1]],[[-22,-81],[0,-1]],[[-22,-82],[-1,-1]],[[-23,-83],[-1,1]],[[-24,-82],[-1,-1]],[[-25,-83],[-1,1]],[[-33,-24],[0,1]],[[-7,-24],[-1,-1]],[[-3,-27],[0,-1]],[[-3,-28],[-1,-1]],[[-61,-48],[-1,-1]],[[-71,-55],[-1,1]],[[-50,-38],[0,1]],[[-50,-37],[-1,1]],[[-51,-36],[-1,-1]],[[-25,-83],[0,-1]],[[-44,-70],[0,1]],[[-44,-69],[1,1]],[[22,-42],[-1,-1]],[[21,-43],[-1,1]],[[21,-44],[0,1]],[[-63,-56],[1,-1]],[[18,-54],[-1,-1]],[[17,-55],[-1,1]],[[-45,-68],[1,-1]],[[28,-65],[-1,1]],[[-1,-27],[0,-1]],[[-2,-29],[-1,1]],[[-20,-70],[-1,-1]],[[-40,-21],[-1,1]],[[23,-52],[0,1]],[[-34,-25],[-1,1]],[[21,-52],[0,1]],[[17,-64],[-1,-1]],[[16,-65],[-1,1]],[[15,-64],[0,1]],[[15,-63],[-1,1]],[[14,-62],[-1,-1]],[[-60,-50],[-1,-1]],[[17,-55],[0,-1]],[[-53,-44],[0,1]],[[19,-55],[0,-1]],[[-62,-53],[-1,1]],[[-63,-52],[0,1]],[[-12,-9],[0,-1]],[[-11,-8],[1,-1]],[[-9,-7],[0,-1]],[[-55,-44],[0,1]],[[-55,-80],[1,-1]],[[-52,-82],[0,1]],[[-52,-81],[1,1]],[[-18,-49],[0,-1]],[[-18,-50],[-1,-1]],[[-19,-51],[-1,1]],[[25,-56],[-1,-1]],[[24,-57],[-1,1]],[[-2,-54],[-1,-1]],[[0,-26],[0,1]],[[0,-25],[1,1]],[[1,-24],[0,1]],[[1,-23],[-1,1]],[[0,-22],[0,1]],[[2,-18],[1,-1]],[[3,-19],[1,1]],[[10,-26],[-1,-1]],[[9,-27],[-1,1]],[[-17,-51],[-1,1]],[[39,-56],[-1,-1]],[[38,-57],[-1,1]],[[37,-55],[1,1]],[[-36,-33],[0,-1]],[[-38,-34],[0,1]],[[-38,-33],[1,1]],[[-37,-32],[1,-1]],[[16,-45],[0,-1]],[[16,-46],[-1,-1]],[[14,-61],[0,-1]],[[12,-61],[1,1]],[[-55,-52],[1,-1]],[[-39,-32],[1,-1]],[[-33,-76],[-1,-1]],[[-34,-77],[-1,1]],[[-35,-76],[0,1]],[[-40,-29],[1,1]],[[-39,-28],[1,-1]],[[-24,-14],[1,-1]],[[-49,-36],[-1,-1]],[[-54,-33],[1,1]],[[-53,-32],[0,1]],[[-53,-31],[1,1]],[[-52,-30],[1,-1]],[[-51,-31],[1,1]],[[15,-43],[0,-1]],[[14,-42],[1,-1]],[[-37,-31],[0,-1]],[[-71,-52],[0,1]],[[-71,-51],[1,1]],[[-51,-71],[-1,1]],[[-52,-70],[0,1]],[[-52,-69],[1,1]],[[-56,-58],[-1,-1]],[[-57,-59],[-1,1]],[[-52,-81],[-1,1]],[[-41,-56],[-1,-1]],[[-43,-56],[0,1]],[[-53,-83],[-1,1]],[[-65,-75],[1,1]],[[-69,-75],[1,1]],[[-68,-74],[1,-1]],[[-67,-75],[1,1]],[[-66,-74],[1,-1]],[[-16,-41],[0,-1]],[[-12,-14],[0,1]],[[-12,-13],[1,1]],[[-32,-29],[0,-1]],[[-26,-21],[1,1]],[[-12,-13],[-1,1]],[[-36,-25],[0,-1]],[[-36,-26],[-1,-1]],[[-37,-27],[0,-1]],[[-22,-13],[0,-1]],[[-56,-41],[1,1]],[[-55,-40],[0,1]],[[-17,-39],[0,-1]],[[-57,-59],[0,-1]],[[-13,-15],[-1,1]],[[-30,-17],[-1,1]],[[-19,-24],[0,1]],[[-19,-23],[1,1]],[[-16,-25],[0,-1]],[[-17,-24],[1,-1]],[[37,-52],[0,1]],[[37,-51],[-1,1]],[[36,-49],[1,1]],[[-10,-17],[0,-1]],[[-10,-18],[1,-1]],[[-9,-19],[0,-1]],[[-9,-20],[-1,-1]],[[-10,-21],[0,-1]],[[-47,-39],[-1,1]],[[-15,-23],[0,-1]],[[-15,-24],[-1,-1]],[[-17,-23],[1,1]],[[-16,-22],[1,-1]],[[32,-49],[0,-1]],[[30,-50],[0,1]],[[30,-49],[1,1]],[[31,-48],[1,-1]],[[-13,-52],[1,-1]],[[-13,-23],[0,-1]],[[-13,-24],[-1,-1]],[[-14,-25],[-1,1]],[[-73,-67],[-1,1]],[[-70,-54],[0,1]],[[-69,-52],[1,-1]],[[-29,-71],[0,-1]],[[-29,-72],[1,-1]],[[-28,-73],[0,-1]],[[-28,-74],[-1,-1]],[[-29,-75],[-1,1]],[[-30,-74],[-1,-1]],[[-31,-75],[0,-1]],[[-55,-71],[0,-1]],[[-57,-71],[1,1]],[[-56,-70],[1,-1]],[[-41,-60],[0,1]],[[-41,-59],[1,1]],[[35,-48],[0,1]],[[-30,-41],[0,-1]],[[-31,-43],[-1,1]],[[-32,-42],[0,1]],[[-32,-41],[1,1]],[[-10,-46],[-1,-1]],[[-11,-47],[0,-1]],[[-11,-48],[-1,-1]],[[-12,-49],[0,-1]],[[-12,-50],[1,-1]],[[-11,-44],[0,1]],[[-11,-43],[-1,1]],[[-12,-42],[0,1]],[[-12,-41],[-1,1]],[[-13,-40],[-1,-1]],[[-14,-41],[0,-1]],[[34,-49],[-1,1]],[[33,-48],[0,1]],[[-52,-57],[0,-1]],[[-52,-58],[-1,-1]],[[-53,-59],[0,-1]],[[-75,-71],[1,1]],[[-53,-84],[-1,-1]],[[-54,-85],[-1,1]],[[-55,-84],[0,1]],[[-28,-53],[0,-1]],[[-28,-54],[-1,-1]],[[-29,-55],[-1,1]],[[-30,-54],[0,1]],[[-30,-53],[1,1]],[[-29,-52],[1,-1]],[[32,-49],[1,1]],[[17,-83],[0,-1]],[[16,-82],[1,-1]],[[5,-11],[0,-1]],[[5,-12],[-1,-1]],[[4,-10],[1,-1]],[[13,-51],[0,-1]],[[12,-53],[-1,1]],[[12,-50],[1,-1]],[[26,-74],[-1,-1]],[[25,-75],[0,-1]],[[25,-76],[1,-1]],[[22,-77],[1,1]],[[23,-76],[0,1]],[[14,-50],[-1,-1]],[[-19,-16],[-1,-1]],[[-21,-15],[1,1]],[[-44,-13],[0,-1]],[[-46,-14],[0,1]],[[-46,-13],[1,1]],[[-45,-12],[1,-1]],[[5,-43],[-1,1]],[[4,-42],[0,1]],[[4,-41],[-1,1]],[[3,-40],[0,1]],[[-38,-53],[0,-1]],[[-38,-54],[-1,-1]],[[-39,-55],[-1,1]],[[-40,-54],[0,1]],[[-40,-53],[1,1]],[[-39,-52],[1,-1]],[[-54,-73],[0,-1]],[[-54,-74],[-1,-1]],[[-55,-75],[-1,1]],[[-56,-74],[0,1]],[[-75,-68],[1,-1]],[[27,-55],[0,-1]],[[27,-56],[-1,-1]],[[25,-55],[1,1]],[[-13,-43],[1,1]],[[-29,-76],[0,1]],[[5,-31],[0,-1]],[[5,-32],[-1,-1]],[[4,-30],[1,-1]],[[14,-53],[0,-1]],[[7,-4],[-1,-1]],[[5,-3],[1,1]],[[5,-52],[-1,-1]],[[3,-52],[0,1]],[[3,-51],[1,1]],[[4,-50],[1,-1]],[[36,-74],[0,1]],[[17,-83],[1,1]],[[18,-82],[1,-1]],[[-40,-6],[-1,-1]],[[-41,-7],[0,-1]],[[-41,-8],[-1,-1]],[[-42,-9],[0,-1]],[[-42,-10],[1,-1]],[[-41,-11],[1,1]],[[-40,-10],[1,-1]],[[-19,-20],[-1,-1]],[[-56,-46],[1,-1]],[[-6,-73],[0,-1]],[[-7,-72],[1,-1]],[[-52,-69],[-1,1]],[[-53,-68],[0,1]],[[-65,-47],[0,-1]],[[-65,-48],[-1,-1]],[[-66,-49],[-1,1]],[[-67,-48],[-1,-1]],[[-68,-49],[0,-1]],[[-68,-50],[1,-1]],[[-19,-23],[-1,1]],[[-10,-25],[1,1]],[[-15,-48],[0,1]],[[-15,-47],[1,1]],[[6,-49],[-1,1]],[[5,-48],[0,1]],[[5,-47],[1,1]],[[-17,-47],[1,1]],[[-16,-46],[1,-1]],[[-18,-46],[1,-1]],[[2,-2],[1,-1]],[[-42,-58],[1,-1]],[[-48,-13],[1,1]],[[-47,-12],[1,-1]],[[-47,-63],[0,-1]],[[-47,-64],[-1,-1]],[[-48,-65],[-1,1]],[[-49,-64],[0,1]],[[-48,-62],[1,-1]],[[-54,-85],[0,-1]],[[-54,-86],[1,-1]],[[-59,-87],[1,1]],[[-58,-86],[0,1]],[[-58,-85],[-1,1]],[[-16,-69],[0,-1]],[[-57,-75],[0,-1]],[[-59,-76],[0,1]],[[-59,-75],[1,1]],[[-58,-74],[1,-1]],[[4,-50],[0,1]],[[4,-49],[1,1]],[[-16,-45],[0,-1]],[[-33,-63],[0,-1]],[[-25,-43],[0,-1]],[[-26,-41],[0,-1]],[[-26,-42],[1,-1]],[[-11,-24],[0,1]],[[-31,-63],[0,-1]],[[5,-47],[-1,1]],[[4,-46],[0,1]],[[-23,-28],[0,1]],[[-22,-26],[1,-1]],[[-29,-63],[0,-1]],[[-29,-64],[-1,-1]],[[-30,-62],[1,-1]],[[32,-58],[-1,-1]],[[34,-57],[-1,1]],[[33,-56],[-1,-1]],[[32,-57],[0,-1]],[[-25,-28],[0,1]],[[-42,-21],[0,-1]],[[-42,-22],[-1,-1]],[[-43,-23],[-1,1]],[[34,-66],[-1,-1]],[[33,-67],[-1,1]],[[-37,-39],[-1,1]],[[-18,-45],[-1,1]],[[-19,-44],[0,1]],[[-46,-61],[0,-1]],[[-46,-62],[-1,-1]],[[35,-67],[0,-1]],[[33,-68],[0,1]],[[-25,-43],[1,1]],[[-24,-42],[0,1]],[[-24,-41],[-1,1]],[[-20,-45],[1,1]],[[-19,-47],[-1,1]],[[-20,-46],[-1,-1]],[[-21,-47],[-1,1]],[[-22,-46],[0,1]],[[-22,-45],[1,1]],[[-21,-44],[1,-1]],[[-18,-30],[0,1]],[[-18,-29],[1,1]],[[-17,-28],[1,-1]],[[9,-43],[0,-1]],[[9,-44],[-1,-1]],[[8,-45],[-1,1]],[[-47,-67],[-1,1]],[[-48,-66],[0,1]],[[-47,-64],[1,-1]],[[14,-57],[0,-1]],[[14,-58],[-1,-1]],[[13,-56],[1,-1]],[[-15,-27],[0,-1]],[[-17,-28],[0,1]],[[13,-44],[-1,-1]],[[12,-45],[-1,1]],[[11,-44],[-1,-1]],[[10,-45],[0,-1]],[[10,-46],[-1,-1]],[[-65,-63],[0,-1]],[[-65,-64],[-1,-1]],[[-31,-60],[-1,-1]],[[18,-46],[-1,-1]],[[17,-47],[-1,1]],[[-49,-71],[-1,1]],[[-27,-63],[0,-1]],[[-27,-64],[-1,-1]],[[-28,-65],[-1,1]],[[-29,-63],[1,1]],[[-28,-62],[1,-1]],[[-38,-74],[-1,-1]],[[-39,-75],[-1,1]],[[-28,-65],[0,-1]],[[-51,-12],[-1,-1]],[[-52,-13],[-1,1]],[[-53,-12],[0,1]],[[-52,-10],[1,-1]],[[17,-71],[0,-1]],[[2,-65],[0,-1]],[[0,-65],[1,1]],[[1,-64],[1,-1]],[[-35,-51],[-1,1]],[[14,-46],[-1,-1]],[[13,-47],[-1,1]],[[12,-46],[0,1]],[[-37,-56],[0,1]],[[-37,-55],[1,1]],[[-35,-52],[-1,-1]],[[13,-48],[0,1]],[[-18,-29],[-1,1]],[[-19,-27],[1,1]],[[-34,-38],[-1,-1]],[[-43,-36],[1,-1]],[[-42,-37],[1,1]],[[-41,-36],[1,-1]],[[-40,-37],[1,1]],[[-39,-36],[0,1]],[[-49,-39],[0,-1]],[[14,-73],[0,-1]],[[14,-74],[-1,-1]],[[13,-75],[-1,1]],[[12,-74],[0,1]],[[12,-73],[1,1]],[[-50,-9],[0,-1]],[[-51,-8],[1,-1]],[[-40,-54],[-1,-1]],[[-37,-52],[-1,-1]],[[-31,-56],[-1,-1]],[[-32,-57],[-1,1]],[[-55,-75],[0,-1]],[[-55,-76],[-1,-1]],[[-57,-75],[1,1]],[[7,-68],[0,1]],[[7,-67],[-1,1]],[[6,-66],[0,1]],[[6,-65],[-1,1]],[[5,-64],[-1,-1]],[[4,-65],[0,-1]],[[2,-65],[1,1]],[[3,-64],[0,1]],[[-60,-74],[1,-1]],[[-38,-18],[-1,-1]],[[-39,-19],[-1,1]],[[-32,-38],[0,1]],[[-32,-58],[0,1]],[[-50,-62],[0,1]],[[-50,-61],[1,1]],[[-59,-55],[0,-1]],[[-59,-56],[-1,-1]],[[-60,-57],[-1,1]],[[-61,-55],[1,1]],[[-12,-37],[0,-1]],[[-14,-38],[0,1]],[[-14,-37],[1,1]],[[-13,-36],[1,-1]],[[-7,-31],[0,-1]],[[-7,-32],[1,-1]],[[-6,-33],[0,-1]],[[-6,-34],[-1,-1]],[[-27,-28],[-1,-1]],[[-28,-29],[0,-1]],[[-28,-30],[-1,-1]],[[-2,-46],[0,1]],[[-34,-5],[0,-1]],[[-34,-6],[-1,-1]],[[-35,-4],[1,-1]],[[2,-62],[-1,-1]],[[1,-63],[-1,1]],[[-33,-3],[0,-1]],[[-33,-4],[-1,-1]],[[7,-39],[1,1]],[[1,-64],[0,1]],[[-50,-9],[1,1]],[[-39,-7],[0,-1]],[[-39,-8],[-1,-1]],[[-40,-9],[-1,1]],[[-52,-61],[1,1]],[[-51,-60],[1,-1]],[[6,-61],[0,-1]],[[-60,-57],[0,-1]],[[-38,-77],[-1,1]],[[-39,-76],[0,1]],[[-26,-53],[0,-1]],[[-26,-54],[-1,-1]],[[-27,-55],[-1,1]],[[-28,-53],[1,1]],[[-27,-52],[1,-1]],[[-9,-40],[0,1]],[[-9,-39],[1,1]],[[-8,-38],[0,1]],[[-8,-37],[-1,1]],[[-6,-37],[0,-1]],[[-6,-38],[1,-1]],[[-35,-67],[1,1]],[[-34,-69],[-1,1]],[[-35,-68],[-1,-1]],[[-36,-69],[-1,1]],[[-37,-68],[0,1]],[[-37,-67],[1,1]],[[-36,-66],[1,-1]],[[16,-62],[-1,-1]],[[-43,-47],[0,-1]],[[-45,-48],[0,1]],[[5,-55],[0,-1]],[[3,-55],[1,1]],[[-42,-18],[-1,-1]],[[-43,-19],[-1,1]],[[-44,-18],[0,1]],[[-44,-17],[1,1]],[[-26,-33],[0,-1]],[[-26,-34],[-1,-1]],[[-27,-35],[-1,1]],[[-31,-19],[-1,1]],[[-40,-9],[0,-1]],[[-47,-51],[0,-1]],[[-48,-53],[-1,1]],[[-49,-52],[0,1]],[[-49,-51],[1,1]],[[-48,-50],[1,-1]],[[-47,-51],[1,1]],[[-46,-50],[0,1]],[[-51,-59],[0,-1]],[[-52,-58],[1,-1]],[[-62,-85],[0,-1]],[[-64,-81],[1,1]],[[-48,-50],[0,1]],[[-48,-49],[1,1]],[[-32,-9],[-1,1]],[[-33,-8],[-1,-1]],[[-12,-37],[1,1]],[[-21,-32],[-1,-1]],[[-22,-33],[-1,1]],[[-23,-32],[0,1]],[[-63,-67],[0,-1]],[[-64,-69],[-1,1]],[[-65,-68],[0,1]],[[-65,-67],[1,1]],[[-64,-66],[1,-1]],[[8,-62],[-1,-1]],[[12,-65],[-1,1]],[[11,-64],[-1,-1]],[[10,-65],[-1,1]],[[9,-64],[0,1]],[[9,-63],[1,1]],[[10,-62],[0,1]],[[10,-61],[-1,1]],[[9,-60],[-1,-1]],[[8,-61],[0,-1]],[[-63,-79],[-1,1]],[[-63,-76],[1,-1]],[[-25,-35],[-1,1]],[[-23,-35],[-1,1]],[[-24,-34],[-1,-1]],[[-5,-71],[0,-1]],[[-5,-72],[-1,-1]],[[-7,-71],[1,1]],[[-36,-66],[0,1]],[[-36,-65],[1,1]],[[-13,-35],[0,-1]],[[-14,-34],[1,-1]],[[-27,-35],[0,-1]],[[-27,-36],[-1,-1]],[[-66,-73],[0,-1]],[[-68,-74],[0,1]],[[-64,-65],[0,-1]],[[-65,-67],[-1,1]],[[-65,-64],[1,-1]],[[-33,-35],[-1,1]],[[-33,-32],[1,-1]],[[-31,-20],[-1,-1]],[[-8,-77],[1,1]],[[-7,-76],[0,1]],[[-5,-75],[0,-1]],[[-5,-76],[1,-1]],[[-4,-77],[0,-1]],[[-4,-78],[-1,-1]],[[-5,-79],[0,-1]],[[6,-66],[-1,-1]],[[-39,-8],[1,-1]],[[-47,-60],[0,1]],[[-44,-17],[-1,1]],[[-3,-39],[0,-1]],[[-3,-40],[-1,-1]],[[-4,-41],[-1,1]],[[-50,-73],[-1,1]],[[-39,-76],[-1,-1]],[[-40,-77],[0,-1]],[[-40,-78],[1,-1]],[[-4,-41],[0,-1]],[[-13,-35],[1,1]],[[32,-70],[-1,-1]],[[31,-71],[-1,1]],[[30,-70],[0,1]],[[30,-69],[1,1]],[[-35,-76],[-1,-1]],[[-12,-69],[0,-1]],[[-12,-70],[-1,-1]],[[-13,-71],[0,-1]],[[-13,-72],[1,-1]],[[-12,-73],[0,-1]],[[-12,-74],[-1,-1]],[[-13,-68],[1,-1]],[[-2,-42],[0,1]],[[-2,-41],[1,1]],[[-53,-55],[1,1]],[[-54,-54],[1,-1]],[[-42,-25],[1,1]],[[-41,-24],[0,1]],[[-41,-23],[1,1]],[[-41,-27],[-1,1]],[[-42,-26],[-1,-1]],[[-43,-27],[-1,1]],[[-44,-26],[0,1]],[[-44,-25],[1,1]],[[-43,-24],[1,-1]],[[-29,-27],[-1,1]],[[-30,-26],[-1,-1]],[[6,-69],[0,-1]],[[-36,-9],[-1,1]],[[-60,-62],[0,1]],[[-60,-61],[1,1]],[[-63,-47],[0,-1]],[[-64,-49],[-1,1]],[[-4,-78],[1,-1]],[[-37,-11],[-1,1]],[[0,-73],[0,-1]],[[0,-74],[1,-1]],[[-17,-36],[0,1]],[[-16,-34],[1,-1]],[[-2,-41],[-1,1]],[[0,-5],[0,-1]],[[-1,-7],[-1,1]],[[-2,-6],[0,1]],[[-19,-36],[0,1]],[[2,-37],[0,-1]],[[1,-36],[1,-1]],[[9,-71],[0,-1]],[[9,-72],[-1,-1]],[[8,-73],[-1,1]],[[7,-72],[0,1]],[[8,-70],[1,-1]],[[-13,-67],[-1,1]],[[-14,-66],[0,1]],[[-14,-65],[1,1]],[[-13,-64],[0,1]],[[-13,-63],[1,1]],[[2,-37],[1,1]],[[-52,-45],[0,-1]],[[-52,-46],[-1,-1]],[[-53,-47],[-1,1]],[[-45,-35],[0,-1]],[[-46,-34],[1,-1]],[[-48,-58],[-1,-1]],[[-49,-56],[1,-1]],[[8,-10],[-1,-1]],[[7,-11],[-1,1]],[[6,-10],[0,1]],[[6,-9],[1,1]],[[6,-73],[0,-1]],[[5,-72],[1,-1]],[[6,-9],[-1,1]],[[-40,-14],[-1,-1]],[[-41,-15],[-1,1]],[[10,-69],[0,-1]],[[10,-70],[1,-1]],[[6,-73],[1,1]],[[9,-68],[1,-1]],[[18,-81],[0,-1]],[[17,-80],[1,-1]],[[-40,-17],[-1,1]],[[-41,-16],[0,1]],[[-13,-60],[0,1]],[[-13,-59],[1,1]],[[-33,-43],[1,1]],[[-13,-59],[-1,1]],[[-14,-58],[0,1]],[[-46,-21],[0,-1]],[[-46,-22],[-1,-1]],[[-47,-23],[-1,1]],[[-48,-22],[0,1]],[[-48,-21],[-1,1]],[[-49,-20],[-1,-1]],[[-47,-19],[0,-1]],[[-47,-20],[1,-1]],[[-51,-47],[0,-1]],[[-51,-48],[-1,-1]],[[-52,-49],[-1,1]],[[-53,-48],[0,1]],[[-52,-46],[1,-1]],[[-47,-55],[0,-1]],[[-48,-54],[1,-1]],[[-31,-51],[-1,1]],[[-32,-49],[1,1]],[[-8,-58],[-1,-1]],[[-10,-58],[0,1]],[[-39,-55],[0,-1]],[[-2,-6],[-1,-1]],[[-3,-7],[0,-1]],[[-44,-13],[1,1]],[[11,-68],[-1,-1]],[[-51,-24],[-1,-1]],[[-52,-25],[-1,1]],[[-3,-35],[-1,1]],[[-4,-34],[-1,-1]],[[-5,-35],[0,-1]],[[-6,-33],[1,1]],[[-5,-32],[1,-1]],[[-4,-33],[1,1]],[[-45,-11],[0,-1]],[[-47,-12],[0,1]],[[-47,-11],[1,1]],[[-46,-10],[1,-1]],[[35,-72],[-1,-1]],[[34,-73],[0,-1]],[[34,-74],[1,-1]],[[34,-77],[-1,1]],[[-42,-46],[1,-1]],[[-18,-58],[0,1]],[[-18,-57],[1,1]],[[-48,-29],[0,-1]],[[-48,-30],[1,-1]],[[-47,-31],[1,1]],[[-44,-34],[-1,-1]],[[-49,-28],[1,-1]],[[-46,-54],[-1,-1]],[[-66,-69],[1,1]],[[-20,-58],[0,1]],[[-20,-57],[1,1]],[[-19,-56],[1,-1]],[[11,-55],[0,-1]],[[11,-56],[-1,-1]],[[10,-57],[-1,1]],[[9,-56],[-1,-1]],[[8,-57],[-1,1]],[[10,-53],[0,-1]],[[10,-54],[1,-1]],[[-6,-65],[0,-1]],[[-6,-66],[-1,-1]],[[-7,-67],[-1,1]],[[-8,-66],[-1,-1]],[[-9,-67],[0,-1]],[[-9,-68],[1,-1]],[[-10,-73],[-1,1]],[[-11,-72],[-1,-1]],[[-12,-70],[1,-1]],[[-11,-71],[1,1]],[[-10,-70],[0,1]],[[-10,-69],[-1,1]],[[-11,-68],[0,1]],[[-21,-56],[1,-1]],[[-5,-32],[0,1]],[[-23,-67],[1,1]],[[-22,-66],[1,-1]],[[-21,-67],[1,1]],[[-20,-66],[0,1]],[[-24,-66],[1,-1]],[[-19,-55],[0,-1]],[[-20,-54],[1,-1]],[[12,-73],[-1,1]],[[-65,-55],[0,-1]],[[-19,-55],[1,1]],[[4,-2],[0,1]],[[-1,-60],[-1,-1]],[[-2,-61],[-1,1]],[[-3,-60],[0,1]],[[-3,-59],[1,1]],[[-43,-24],[0,1]],[[-42,-22],[1,-1]],[[-20,-73],[0,-1]],[[-33,-11],[-1,1]],[[-54,-49],[0,-1]],[[-55,-48],[1,-1]],[[-63,-55],[-1,1]],[[-64,-53],[1,1]],[[-54,-38],[0,1]],[[-54,-37],[-1,1]],[[-57,-28],[1,-1]],[[-34,-37],[1,1]],[[-23,-59],[0,-1]],[[-23,-60],[-1,-1]],[[-24,-61],[0,-1]],[[-24,-62],[1,-1]],[[-23,-63],[1,1]],[[-22,-62],[1,-1]],[[-24,-58],[1,-1]],[[12,-69],[0,-1]],[[-61,-60],[1,-1]],[[-10,-38],[1,-1]],[[7,-15],[0,-1]],[[7,-16],[-1,-1]],[[6,-17],[0,-1]],[[6,-18],[1,-1]],[[7,-19],[1,1]],[[8,-18],[1,-1]],[[6,-14],[1,-1]],[[-54,-49],[1,1]],[[-51,-48],[1,-1]],[[-48,-49],[-1,1]],[[25,-67],[0,-1]],[[25,-68],[-1,-1]],[[24,-69],[0,-1]],[[24,-70],[1,-1]],[[25,-71],[1,1]],[[26,-70],[1,-1]],[[27,-71],[0,-1]],[[24,-66],[1,-1]],[[31,-64],[1,-1]],[[27,-71],[1,1]],[[28,-70],[0,1]],[[28,-69],[1,1]],[[29,-68],[1,-1]],[[32,-73],[-1,1]],[[31,-72],[-1,-1]],[[30,-73],[-1,1]],[[29,-72],[-1,-1]],[[14,-18],[-1,-1]],[[13,-19],[-1,1]],[[18,-17],[-1,1]],[[17,-16],[0,1]],[[-46,-57],[0,-1]],[[-2,-13],[0,-1]],[[-4,-14],[0,1]],[[-4,-13],[1,1]],[[-3,-12],[1,-1]],[[-50,-25],[0,-1]],[[-50,-26],[-1,-1]],[[-51,-27],[-1,1]],[[-52,-26],[0,1]],[[-1,-12],[-1,-1]],[[-4,-13],[-1,1]],[[-40,-41],[0,-1]],[[-40,-42],[1,-1]],[[-39,-43],[1,1]],[[-38,-42],[0,1]],[[-38,-41],[-1,1]],[[9,-35],[-1,1]],[[9,-32],[1,-1]],[[-22,-58],[-1,-1]],[[-25,-59],[-1,1]],[[-26,-58],[0,1]],[[-26,-57],[-1,1]],[[-27,-56],[0,1]],[[-26,-53],[1,1]],[[-21,-60],[-1,-1]],[[-22,-61],[-1,1]],[[26,-66],[-1,-1]],[[-22,-61],[0,-1]],[[27,-67],[0,-1]],[[27,-68],[-1,-1]],[[26,-69],[-1,1]],[[1,-43],[1,1]],[[2,-42],[0,1]],[[2,-41],[-1,1]],[[-27,-60],[0,1]],[[-27,-59],[1,1]],[[-1,-51],[0,-1]],[[-1,-52],[-1,-1]],[[-3,-52],[0,1]],[[-3,-51],[1,1]],[[-2,-50],[1,-1]],[[10,-14],[0,1]],[[10,-13],[1,1]],[[11,-12],[1,-1]],[[-48,-22],[-1,-1]],[[-49,-23],[-1,1]],[[-45,-56],[1,-1]],[[-3,-59],[-1,1]],[[-4,-58],[-1,-1]],[[-5,-59],[-1,1]],[[-6,-58],[0,1]],[[-6,-57],[-1,1]],[[-7,-56],[-1,-1]],[[13,-20],[0,1]],[[9,-11],[1,1]],[[10,-10],[0,1]],[[-64,-73],[-1,1]],[[-4,-73],[-1,1]],[[17,-48],[0,1]],[[23,-39],[-1,1]],[[-53,-19],[1,1]],[[-31,-47],[-1,1]],[[0,-25],[-1,1]],[[-1,-24],[-1,-1]],[[-2,-25],[0,-1]],[[-4,-25],[1,1]],[[-3,-24],[0,1]],[[-3,-23],[-1,1]],[[21,-40],[0,1]],[[-51,-47],[1,1]],[[-50,-46],[1,-1]],[[-47,-28],[-1,-1]],[[-49,-23],[0,-1]],[[-64,-65],[1,1]],[[-18,-86],[0,1]],[[-18,-85],[1,1]],[[-17,-64],[0,1]],[[-17,-63],[1,1]],[[38,-58],[0,1]],[[21,-68],[0,1]],[[21,-67],[1,1]],[[6,-13],[-1,1]],[[5,-11],[1,1]],[[10,-66],[0,1]],[[-28,-61],[0,-1]],[[-54,-17],[-1,1]],[[-55,-16],[-1,-1]],[[-14,-58],[-1,-1]],[[-15,-59],[0,-1]],[[-15,-60],[1,-1]],[[-16,-78],[1,-1]],[[13,-28],[0,1]],[[-9,-75],[1,1]],[[-52,-70],[-1,-1]],[[-53,-71],[-1,1]],[[-54,-70],[0,1]],[[-54,-69],[-1,1]],[[-55,-68],[-1,-1]],[[-56,-69],[0,-1]],[[20,-38],[0,1]],[[20,-37],[1,1]],[[10,-29],[1,1]],[[11,-28],[0,1]],[[9,-31],[-1,1]],[[8,-30],[0,1]],[[8,-29],[1,1]],[[9,-28],[1,-1]],[[-49,-75],[0,-1]],[[-49,-76],[-1,-1]],[[-51,-75],[1,1]],[[-43,-80],[0,1]],[[-43,-79],[-1,1]],[[-44,-78],[0,1]],[[20,-37],[-1,1]],[[13,-23],[1,1]],[[-13,-28],[-1,-1]],[[19,-68],[0,1]],[[19,-67],[1,1]],[[20,-66],[1,-1]],[[8,-65],[1,1]],[[15,-23],[1,1]],[[16,-22],[1,-1]],[[-19,-59],[0,-1]],[[-19,-60],[-1,-1]],[[-21,-51],[0,-1]],[[-11,-56],[-1,-1]],[[-12,-54],[1,-1]],[[9,-28],[0,1]],[[-40,-34],[-1,-1]],[[-41,-35],[-1,1]],[[16,-14],[-1,-1]],[[15,-15],[0,-1]],[[15,-16],[1,-1]],[[16,-17],[1,1]],[[19,-20],[-1,-1]],[[18,-21],[-1,1]],[[17,-20],[0,1]],[[17,-19],[-1,1]],[[16,-18],[-1,-1]],[[-39,-72],[0,1]],[[-39,-71],[-1,1]],[[-40,-70],[0,1]],[[-40,-69],[-1,1]],[[-47,-76],[-1,-1]],[[-48,-77],[-1,1]],[[-41,-36],[0,1]],[[8,-29],[-1,1]],[[-7,-60],[-1,-1]],[[-12,-74],[1,-1]],[[-11,-75],[1,1]],[[1,-56],[-1,-1]],[[-1,-56],[0,1]],[[-19,-51],[0,-1]],[[15,-35],[-1,1]],[[-44,-18],[-1,-1]],[[-27,-52],[0,1]],[[-27,-51],[-1,1]],[[-28,-50],[0,1]],[[16,-69],[0,-1]],[[14,-69],[1,1]],[[15,-68],[1,-1]],[[-46,-78],[-1,-1]],[[-47,-79],[-1,1]],[[-48,-78],[0,1]],[[10,-42],[0,1]],[[10,-41],[1,1]],[[-30,-78],[0,1]],[[2,-30],[1,-1]],[[2,-29],[1,1]],[[9,-63],[-1,1]],[[10,-41],[-1,1]],[[-34,-13],[0,-1]],[[-34,-14],[-1,-1]],[[-35,-15],[-1,1]],[[-36,-14],[0,1]],[[18,-70],[1,-1]],[[-31,-79],[-1,1]],[[-32,-78],[0,1]],[[20,-69],[0,-1]],[[-25,-71],[0,-1]],[[-26,-70],[1,-1]],[[22,-70],[-1,-1]],[[19,-80],[-1,-1]],[[-45,-79],[1,1]],[[-36,-45],[0,-1]],[[-36,-46],[-1,-1]],[[-37,-47],[-1,1]],[[-38,-46],[0,1]],[[-37,-44],[1,-1]],[[-6,-61],[1,1]],[[-5,-60],[0,1]],[[-36,-26],[1,-1]],[[-36,-14],[-1,-1]],[[-33,-15],[0,-1]],[[-33,-16],[-1,-1]],[[-34,-17],[-1,1]],[[-35,-16],[0,1]],[[-34,-14],[1,-1]],[[-47,-27],[1,1]],[[-14,-65],[-1,1]],[[-11,-68],[-1,-1]],[[-34,-77],[0,-1]],[[-34,-78],[1,-1]],[[-33,-79],[1,1]],[[-66,-53],[-1,1]],[[-37,-55],[-1,1]],[[-25,-80],[0,1]],[[-25,-79],[1,1]],[[-14,-66],[-1,-1]],[[-35,-43],[0,-1]],[[-35,-44],[-1,-1]],[[-36,-42],[1,-1]],[[-36,-33],[1,1]],[[-35,-32],[1,-1]],[[-14,-69],[-1,1]],[[-43,-19],[0,-1]],[[-40,-73],[-1,1]],[[-41,-72],[0,1]],[[-41,-71],[1,1]],[[-33,-12],[1,-1]],[[16,-41],[0,-1]],[[16,-42],[-1,-1]],[[15,-40],[1,-1]],[[20,-77],[-1,1]],[[-71,-51],[-1,1]],[[17,-43],[-1,1]],[[-7,-59],[1,1]],[[19,-59],[0,-1]],[[19,-60],[-1,-1]],[[18,-61],[0,-1]],[[18,-62],[1,-1]],[[19,-63],[1,1]],[[20,-62],[1,-1]],[[16,-61],[1,1]],[[17,-60],[0,1]],[[17,-59],[1,1]],[[18,-58],[1,-1]],[[-19,-68],[1,-1]],[[-53,-72],[0,1]],[[-20,-86],[0,1]],[[-20,-85],[1,1]],[[-19,-84],[1,-1]],[[-17,-67],[0,-1]],[[-18,-66],[1,-1]],[[-6,-22],[0,1]],[[-6,-21],[1,1]],[[-34,-42],[-1,-1]],[[27,-76],[0,1]],[[-48,-26],[0,1]],[[-6,-21],[-1,1]],[[-72,-53],[-1,1]],[[11,-75],[1,1]],[[-37,-72],[1,-1]],[[-17,-67],[1,1]],[[-34,-45],[-1,1]],[[-6,-25],[0,-1]],[[-6,-26],[-1,-1]],[[-49,-27],[-1,1]],[[-4,-26],[-1,-1]],[[-5,-27],[-1,1]],[[20,-61],[0,-1]],[[19,-60],[1,-1]],[[-5,-28],[0,1]],[[-6,-29],[-1,1]],[[-24,-70],[-1,-1]],[[21,-60],[-1,-1]],[[-21,-83],[0,-1]],[[-21,-84],[-1,-1]],[[-23,-84],[0,1]],[[-22,-82],[1,-1]],[[-5,-16],[-1,-1]],[[-6,-17],[0,-1]],[[-35,-47],[-1,1]],[[-42,-17],[1,1]],[[-59,-56],[1,-1]],[[-30,-57],[1,1]],[[-29,-56],[0,1]],[[-8,-49],[0,-1]],[[-8,-50],[-1,-1]],[[-10,-50],[0,1]],[[-10,-49],[1,1]],[[-9,-48],[1,-1]],[[-9,-47],[0,-1]],[[-4,-49],[0,-1]],[[-4,-50],[-1,-1]],[[-5,-51],[0,-1]],[[-39,-20],[0,1]],[[-35,-31],[0,-1]],[[-36,-30],[1,-1]],[[-51,-27],[0,-1]],[[-69,-63],[0,-1]],[[-70,-65],[-1,1]],[[23,-43],[1,1]],[[24,-42],[1,-1]],[[24,-41],[0,-1]],[[23,-40],[1,-1]],[[-54,-70],[-1,-1]],[[-22,-46],[-1,-1]],[[25,-39],[0,-1]],[[25,-40],[-1,-1]],[[24,-38],[1,-1]],[[26,-41],[0,-1]],[[25,-40],[1,-1]],[[-48,-10],[1,-1]],[[-18,-73],[0,-1]],[[-18,-74],[-1,-1]],[[-19,-72],[1,-1]],[[26,-41],[1,1]],[[-30,-29],[-1,1]],[[25,-39],[1,1]],[[-21,-47],[0,-1]],[[-33,-28],[0,1]],[[-33,-27],[-1,1]],[[-1,-19],[0,-1]],[[0,-18],[1,-1]],[[24,-58],[0,1]],[[-35,-79],[0,-1]],[[-36,-78],[1,-1]],[[-16,-21],[0,-1]],[[-18,-21],[1,1]],[[-17,-20],[1,-1]],[[-37,-68],[-1,-1]],[[-38,-66],[1,-1]],[[-4,-34],[0,1]],[[2,-58],[-1,-1]],[[1,-59],[-1,1]],[[-36,-69],[0,-1]],[[-36,-70],[-1,-1]],[[1,-60],[0,1]],[[-34,-70],[-1,-1]],[[-35,-71],[-1,1]],[[4,-21],[0,-1]],[[3,-23],[-1,1]],[[2,-22],[0,1]],[[2,-21],[1,1]],[[3,-20],[1,-1]],[[2,-34],[-1,-1]],[[0,-34],[0,1]],[[-44,-10],[-1,-1]],[[-46,-10],[0,1]],[[11,-51],[-1,1]],[[10,-49],[1,1]],[[11,-48],[1,-1]],[[-49,-64],[-1,-1]],[[-50,-65],[-1,1]],[[3,-19],[0,-1]],[[2,-21],[-1,1]],[[7,-51],[-1,1]],[[-33,-60],[0,1]],[[-23,-67],[0,-1]],[[18,-21],[0,-1]],[[16,-22],[0,1]],[[16,-21],[1,1]],[[-13,-51],[1,1]],[[7,-52],[-1,-1]],[[-41,-28],[-1,-1]],[[-43,-28],[0,1]],[[8,-53],[0,-1]],[[8,-54],[-1,-1]],[[-70,-62],[0,1]],[[-39,-43],[0,-1]],[[-41,-44],[0,1]],[[-41,-43],[1,1]],[[-38,-50],[0,1]],[[-38,-49],[1,1]],[[-37,-48],[1,-1]],[[-11,-47],[-1,1]],[[10,-54],[-1,-1]],[[9,-55],[-1,1]],[[-72,-61],[1,1]],[[-14,-25],[0,-1]],[[-49,-32],[-1,-1]],[[-50,-33],[-1,1]],[[-51,-32],[0,1]],[[-72,-58],[1,-1]],[[-48,-66],[-1,-1]],[[-49,-67],[-1,1]],[[-50,-66],[0,1]],[[-38,-25],[0,-1]],[[-38,-26],[-1,-1]],[[-39,-27],[-1,1]],[[-39,-24],[1,-1]],[[-55,-79],[1,1]],[[-54,-78],[1,-1]],[[9,-55],[0,-1]],[[-54,-41],[0,-1]],[[-55,-40],[1,-1]],[[-46,-33],[1,1]],[[-52,-13],[0,-1]],[[-52,-14],[-1,-1]],[[-53,-15],[-1,1]],[[-54,-14],[0,1]],[[-54,-13],[1,1]],[[37,-51],[1,1]],[[-13,-16],[-1,-1]],[[-54,-41],[1,1]],[[-39,-52],[0,1]],[[-12,-17],[0,-1]],[[-12,-18],[-1,-1]],[[-20,-81],[0,-1]],[[-20,-82],[-1,-1]],[[-15,-23],[1,1]],[[-10,-18],[-1,-1]],[[-11,-19],[-1,1]],[[-57,-72],[-1,-1]],[[-58,-73],[-1,1]],[[-59,-72],[0,1]],[[-30,-10],[-1,-1]],[[-39,-27],[0,-1]],[[-54,-13],[-1,1]],[[-16,-21],[1,1]],[[-15,-20],[1,-1]],[[-49,-35],[-1,1]],[[-50,-34],[0,1]],[[-10,-21],[-1,1]],[[-11,-20],[0,1]],[[-49,-67],[0,-1]],[[-51,-67],[1,1]],[[-54,-86],[-1,-1]],[[-55,-87],[-1,1]],[[-56,-86],[0,1]],[[-56,-85],[1,1]],[[-54,-77],[0,-1]],[[-55,-76],[1,-1]],[[-57,-87],[0,-1]],[[-58,-86],[1,-1]],[[-14,-37],[-1,1]],[[12,-57],[-1,1]],[[11,-55],[1,1]],[[-12,-49],[-1,1]],[[30,-58],[-1,-1]],[[29,-59],[-1,1]],[[28,-58],[0,1]],[[28,-57],[1,1]],[[6,-29],[0,-1]],[[6,-30],[-1,-1]],[[-17,-19],[0,-1]],[[-18,-18],[1,-1]],[[20,-81],[1,1]],[[15,-67],[0,-1]],[[13,-67],[1,1]],[[14,-66],[1,-1]],[[-16,-18],[-1,-1]],[[-30,-73],[0,-1]],[[-31,-75],[-1,1]],[[-31,-72],[1,-1]],[[-29,-72],[-1,-1]],[[4,-49],[-1,1]],[[3,-48],[0,1]],[[3,-47],[1,1]],[[-15,-19],[0,-1]],[[29,-48],[1,-1]],[[-1,-68],[-1,-1]],[[-2,-69],[-1,1]],[[-3,-67],[1,1]],[[31,-47],[0,-1]],[[29,-47],[1,1]],[[30,-46],[1,-1]],[[-55,-59],[0,-1]],[[-53,-75],[0,-1]],[[-53,-76],[-1,-1]],[[-54,-74],[1,-1]],[[-25,-35],[0,-1]],[[-25,-36],[-1,-1]],[[-26,-37],[-1,1]],[[31,-47],[1,1]],[[15,-20],[1,-1]],[[-28,-74],[1,-1]],[[12,-10],[-1,-1]],[[11,-11],[-1,1]],[[-28,-73],[1,1]],[[18,-66],[1,-1]],[[-30,-54],[-1,-1]],[[-31,-52],[1,-1]],[[-11,-20],[-1,-1]],[[-12,-21],[-1,1]],[[15,-52],[1,-1]],[[-9,-55],[-1,1]],[[-10,-53],[1,1]],[[-37,-24],[-1,-1]],[[-44,-25],[-1,1]],[[-53,-15],[0,-1]],[[-55,-16],[0,1]],[[-55,-15],[1,1]],[[17,-51],[0,-1]],[[2,-49],[0,-1]],[[2,-50],[-1,-1]],[[1,-48],[1,-1]],[[19,-52],[-1,-1]],[[3,-48],[-1,-1]],[[2,-46],[1,-1]],[[16,-57],[0,-1]],[[16,-58],[-1,-1]],[[15,-59],[-1,1]],[[14,-57],[1,1]],[[-1,-72],[-1,-1]],[[-2,-73],[-1,1]],[[-8,-33],[0,-1]],[[-9,-32],[1,-1]],[[-15,-40],[1,-1]],[[-17,-48],[0,1]],[[-37,-27],[-1,1]],[[-52,-14],[1,-1]],[[-41,-12],[0,1]],[[3,-51],[-1,1]],[[-53,-59],[-1,1]],[[-11,-48],[1,-1]],[[16,-17],[0,-1]],[[14,-17],[1,1]],[[-37,-48],[0,1]],[[14,-37],[-1,1]],[[-9,-71],[-1,1]],[[-10,-69],[1,1]],[[-37,-12],[-1,-1]],[[-26,-42],[-1,-1]],[[-27,-43],[-1,1]],[[-13,-39],[0,-1]],[[-30,-13],[0,-1]],[[33,-56],[0,1]],[[-51,-35],[0,-1]],[[-53,-35],[1,1]],[[-52,-34],[1,-1]],[[-68,-50],[-1,-1]],[[-69,-48],[1,-1]],[[-55,-88],[0,1]],[[32,-57],[-1,1]],[[31,-56],[0,1]],[[31,-55],[1,1]],[[-31,-4],[-1,-1]],[[-32,-5],[-1,1]],[[-55,-32],[0,1]],[[-54,-30],[1,-1]],[[-26,-62],[-1,-1]],[[31,-55],[-1,1]],[[14,-38],[-1,-1]],[[30,-46],[0,1]],[[-35,-16],[-1,-1]],[[-36,-17],[-1,1]],[[-10,-66],[1,-1]],[[-23,-43],[-1,1]],[[-24,-41],[1,1]],[[-20,-45],[0,-1]],[[-40,-53],[-1,1]],[[-66,-49],[0,-1]],[[-19,-67],[-1,1]],[[-7,-47],[0,-1]],[[-7,-48],[-1,-1]],[[-36,-17],[0,-1]],[[30,-57],[1,1]],[[-29,-28],[1,-1]],[[-11,-40],[-1,-1]],[[-2,-73],[0,-1]],[[-2,-74],[-1,-1]],[[-3,-75],[-1,1]],[[-42,-10],[-1,-1]],[[-43,-8],[1,-1]],[[-29,-12],[1,-1]],[[5,-20],[-1,-1]],[[-22,-37],[0,-1]],[[-23,-39],[-1,1]],[[-23,-36],[1,-1]],[[-67,-72],[0,1]],[[-67,-71],[1,1]],[[-67,-47],[0,-1]],[[-68,-46],[1,-1]],[[-57,-87],[1,1]],[[-34,-18],[0,1]],[[-33,-16],[1,-1]],[[34,-58],[-1,-1]],[[33,-59],[-1,1]],[[-56,-85],[-1,1]],[[-57,-84],[0,1]],[[11,-64],[0,1]],[[11,-63],[1,1]],[[-12,-25],[-1,1]],[[35,-60],[-1,-1]],[[34,-61],[-1,1]],[[33,-60],[0,1]],[[14,-41],[-1,1]],[[29,-60],[0,1]],[[-42,-73],[0,-1]],[[-42,-74],[-1,-1]],[[-43,-75],[-1,1]],[[-43,-72],[1,-1]],[[-52,-78],[0,1]],[[-52,-77],[1,1]],[[11,-63],[-1,1]],[[10,-61],[1,1]],[[33,-60],[-1,-1]],[[32,-61],[-1,1]],[[-8,-65],[0,-1]],[[-9,-64],[1,-1]],[[-34,-58],[-1,-1]],[[-29,-60],[0,1]],[[-29,-59],[1,1]],[[-28,-58],[1,-1]],[[-5,-48],[-1,-1]],[[-6,-49],[-1,1]],[[32,-61],[0,-1]],[[-10,-42],[-1,-1]],[[-30,-58],[1,-1]],[[9,-59],[0,-1]],[[8,-61],[-1,1]],[[-45,-63],[0,-1]],[[-46,-62],[1,-1]],[[-66,-46],[-1,-1]],[[-58,-73],[0,-1]],[[-60,-73],[1,1]],[[-28,-57],[0,-1]],[[-29,-56],[1,-1]],[[34,-62],[0,1]],[[-68,-69],[0,-1]],[[-68,-70],[-1,-1]],[[-69,-71],[-1,1]],[[-70,-69],[1,1]],[[-69,-68],[1,-1]],[[-28,-57],[1,1]],[[-34,-53],[0,-1]],[[12,-46],[-1,-1]],[[11,-47],[-1,1]],[[-32,-54],[-1,-1]],[[11,-47],[0,-1]],[[-5,-51],[-1,1]],[[-6,-50],[0,1]],[[-42,-37],[0,-1]],[[-45,-63],[1,1]],[[-58,-85],[1,1]],[[-31,-67],[0,-1]],[[-32,-69],[-1,1]],[[6,-33],[0,-1]],[[5,-32],[1,-1]],[[-29,-51],[0,-1]],[[-30,-50],[1,-1]],[[20,-66],[0,1]],[[20,-65],[1,1]],[[-28,-50],[-1,-1]],[[-27,-11],[0,-1]],[[-25,-12],[-1,-1]],[[15,-72],[0,1]],[[-6,-50],[-1,-1]],[[-7,-51],[-1,1]],[[-40,-37],[0,-1]],[[27,-59],[0,-1]],[[26,-58],[1,-1]],[[-57,-63],[0,-1]],[[-57,-64],[-1,-1]],[[-58,-62],[1,-1]],[[-2,-34],[1,-1]],[[-26,-29],[0,-1]],[[-26,-30],[-1,-1]],[[-27,-31],[-1,1]],[[28,-58],[-1,-1]],[[27,-56],[1,-1]],[[11,-43],[0,-1]],[[10,-45],[-1,1]],[[-27,-31],[0,-1]],[[-27,-51],[1,1]],[[-35,-68],[0,1]],[[3,-64],[1,-1]],[[-39,-36],[1,-1]],[[-32,-5],[0,-1]],[[-32,-6],[-1,-1]],[[-33,-7],[-1,1]],[[-47,-31],[0,-1]],[[-49,-31],[1,1]],[[7,-64],[-1,-1]],[[5,-64],[0,1]],[[-33,-7],[0,-1]],[[8,-66],[-1,-1]],[[-28,-26],[0,1]],[[-28,-25],[1,1]],[[-48,-46],[0,1]],[[-48,-45],[1,1]],[[-52,-29],[0,-1]],[[-26,-65],[0,-1]],[[-27,-64],[1,-1]],[[25,-72],[0,1]],[[-7,-39],[0,-1]],[[-8,-38],[1,-1]],[[-22,-65],[0,-1]],[[-24,-65],[1,1]],[[-23,-64],[1,-1]],[[-22,-34],[0,1]],[[-26,-30],[1,-1]],[[-37,-35],[0,-1]],[[-30,-6],[-1,-1]],[[-31,-7],[-1,1]],[[26,-70],[0,1]],[[27,-68],[1,-1]],[[-24,-34],[0,1]],[[-24,-33],[1,1]],[[-43,-51],[1,1]],[[-69,-67],[0,-1]],[[29,-67],[0,-1]],[[-24,-33],[-1,1]],[[-40,-49],[0,-1]],[[-41,-48],[1,-1]],[[-66,-77],[0,-1]],[[-68,-78],[0,1]],[[-68,-77],[1,1]],[[-67,-76],[1,-1]],[[-7,-79],[0,-1]],[[-8,-78],[1,-1]],[[-22,-65],[1,1]],[[-35,-36],[-1,-1]],[[-7,-79],[1,1]],[[-6,-78],[1,-1]],[[-26,-38],[0,1]],[[-25,-36],[1,-1]],[[-44,-50],[0,1]],[[-67,-68],[-1,-1]],[[-40,-77],[-1,1]],[[31,-71],[0,-1]],[[29,-72],[0,1]],[[29,-71],[1,1]],[[29,-71],[-1,1]],[[-7,-39],[1,1]],[[-17,-71],[0,-1]],[[-17,-72],[-1,-1]],[[-3,-75],[0,-1]],[[-3,-76],[-1,-1]],[[-23,-64],[0,1]],[[-26,-65],[1,1]],[[30,-73],[0,-1]],[[30,-74],[-1,-1]],[[-30,-21],[0,-1]],[[-30,-22],[-1,-1]],[[-45,-51],[-1,1]],[[-67,-71],[-1,1]],[[-1,-3],[0,-1]],[[-2,-2],[1,-1]],[[32,-74],[-1,-1]],[[31,-75],[-1,1]],[[-60,-86],[0,1]],[[0,-2],[-1,-1]],[[32,-77],[-1,1]],[[31,-76],[0,1]],[[24,-69],[-1,1]],[[-1,-75],[0,-1]],[[-2,-77],[-1,1]],[[-2,-74],[1,-1]],[[8,-73],[0,-1]],[[-41,-43],[-1,1]],[[-1,-75],[1,1]],[[9,-72],[1,-1]],[[-30,-25],[0,-1]],[[-31,-24],[1,-1]],[[-28,-22],[-1,-1]],[[-29,-23],[-1,1]],[[20,-78],[1,-1]],[[30,-78],[0,1]],[[30,-77],[1,1]],[[9,-71],[1,1]],[[-52,-33],[0,-1]],[[-53,-32],[1,-1]],[[-3,-64],[0,1]],[[-3,-63],[1,1]],[[-2,-62],[1,-1]],[[-33,-40],[1,-1]],[[-53,-76],[1,-1]],[[-6,-34],[1,-1]],[[-24,-62],[-1,-1]],[[-25,-60],[1,-1]],[[0,-50],[-1,-1]],[[-2,-50],[0,1]],[[-37,-40],[-1,-1]],[[24,-77],[0,-1]],[[24,-78],[-1,-1]],[[23,-79],[-1,1]],[[23,-76],[1,-1]],[[-31,-8],[0,1]],[[23,-79],[0,-1]],[[34,-74],[-1,-1]],[[33,-72],[1,-1]],[[-17,-75],[0,-1]],[[-18,-74],[1,-1]],[[-3,-4],[-1,-1]],[[24,-78],[1,-1]],[[9,-15],[0,-1]],[[9,-16],[-1,-1]],[[8,-17],[-1,1]],[[7,-15],[1,1]],[[-11,-71],[0,-1]],[[24,-77],[1,1]],[[-2,-70],[0,1]],[[-5,-76],[-1,-1]],[[-6,-77],[-1,1]],[[14,-14],[1,-1]],[[-55,-67],[0,-1]],[[-56,-69],[-1,1]],[[-39,-71],[1,1]],[[24,-74],[1,-1]],[[-41,-7],[-1,1]],[[1,-52],[-1,-1]],[[0,-53],[-1,1]],[[-8,-33],[1,1]],[[-49,-19],[0,-1]],[[-51,-19],[1,1]],[[-34,-29],[-1,1]],[[-69,-72],[0,1]],[[17,-19],[1,1]],[[15,-59],[0,-1]],[[-3,-7],[-1,1]],[[-8,-37],[1,1]],[[-7,-64],[-1,-1]],[[1,-3],[0,-1]],[[0,-54],[0,1]],[[-47,-20],[-1,-1]],[[-52,-26],[-1,-1]],[[-53,-27],[-1,1]],[[-45,-27],[1,1]],[[-7,-67],[0,-1]],[[-6,-66],[1,-1]],[[10,-37],[0,-1]],[[8,-37],[1,1]],[[-4,-65],[0,-1]],[[23,-71],[1,1]],[[-25,-55],[-1,1]],[[-38,-46],[-1,-1]],[[-39,-47],[-1,1]],[[-3,-11],[0,-1]],[[-4,-10],[1,-1]],[[8,-17],[0,-1]],[[5,-39],[-1,1]],[[-3,-11],[1,1]],[[9,-16],[1,-1]],[[5,-40],[-1,-1]],[[11,-15],[0,-1]],[[-26,-57],[1,1]],[[13,-16],[-1,-1]],[[-58,-69],[0,-1]],[[-60,-70],[0,1]],[[-60,-69],[1,1]],[[-38,-49],[-1,1]],[[-39,-48],[0,1]],[[3,-44],[0,1]],[[3,-43],[1,1]],[[-45,-23],[-1,1]],[[-46,-21],[1,1]],[[-52,-50],[0,1]],[[-49,-51],[-1,1]],[[2,-42],[1,-1]],[[-41,-72],[-1,-1]],[[-42,-70],[1,-1]],[[9,-12],[1,-1]],[[11,-11],[0,-1]],[[2,-41],[1,1]],[[-25,-79],[-1,1]],[[-26,-78],[0,1]],[[-26,-77],[1,1]],[[-25,-76],[1,-1]],[[-21,-84],[1,-1]],[[-5,-64],[0,1]],[[-5,-63],[1,1]],[[-4,-62],[1,-1]],[[18,-65],[1,1]],[[19,-64],[1,-1]],[[-39,-48],[-1,-1]],[[17,-76],[0,1]],[[17,-75],[1,1]],[[-29,-23],[0,-1]],[[-29,-24],[-1,-1]],[[8,-46],[0,1]],[[-37,-43],[-1,1]],[[-54,-37],[1,1]],[[-57,-64],[1,-1]],[[17,-75],[-1,1]],[[16,-74],[0,1]],[[-19,-64],[0,1]],[[-19,-63],[1,1]],[[-18,-62],[1,-1]],[[-51,-35],[1,1]],[[-11,-75],[0,-1]],[[-11,-76],[-1,-1]],[[-12,-77],[-1,1]],[[16,-74],[-1,-1]],[[15,-75],[-1,1]],[[-49,-52],[-1,-1]],[[15,-75],[0,-1]],[[15,-76],[-1,-1]],[[13,-76],[0,1]],[[18,-38],[1,-1]],[[7,-12],[0,1]],[[-6,-62],[1,-1]],[[-53,-68],[-1,-1]],[[-48,-78],[-1,-1]],[[-49,-79],[-1,1]],[[-56,-14],[1,-1]],[[-49,-55],[-1,1]],[[-63,-67],[1,1]],[[-17,-80],[1,-1]],[[12,-29],[-1,1]],[[9,-20],[-1,-1]],[[7,-20],[0,1]],[[-41,-75],[-1,1]],[[10,-30],[0,1]],[[-2,-62],[0,1]],[[-4,-61],[0,-1]],[[-5,-60],[1,-1]],[[16,-65],[0,-1]],[[16,-66],[-1,-1]],[[14,-66],[0,1]],[[14,-65],[1,1]],[[13,-24],[-1,-1]],[[12,-25],[-1,1]],[[-54,-34],[-1,-1]],[[-56,-34],[0,1]],[[-47,-23],[0,-1]],[[-50,-45],[0,-1]],[[-51,-44],[1,-1]],[[-60,-69],[-1,1]],[[14,-65],[-1,1]],[[-50,-58],[-1,-1]],[[-6,-77],[0,-1]],[[-64,-77],[-1,1]],[[-65,-76],[0,1]],[[16,-77],[-1,1]],[[14,-26],[0,1]],[[15,-24],[1,-1]],[[17,-68],[-1,-1]],[[16,-66],[1,-1]],[[-4,-61],[1,1]],[[-27,-44],[0,1]],[[-13,-79],[1,1]],[[-12,-78],[1,-1]],[[8,-33],[-1,1]],[[7,-32],[0,1]],[[7,-31],[1,1]],[[-58,-33],[1,1]],[[29,-76],[1,-1]],[[-12,-77],[0,-1]],[[6,-33],[1,1]],[[-66,-77],[1,1]],[[-42,-78],[-1,-1]],[[-40,-78],[-1,-1]],[[-15,-75],[0,-1]],[[-17,-75],[1,1]],[[-16,-74],[1,-1]],[[-10,-77],[0,-1]],[[-11,-76],[1,-1]],[[12,-26],[0,1]],[[-52,-74],[-1,-1]],[[-10,-77],[1,1]],[[-17,-60],[-1,-1]],[[-18,-61],[-1,1]],[[2,-26],[1,-1]],[[-50,-45],[1,1]],[[-49,-44],[1,-1]],[[-58,-30],[1,-1]],[[-21,-68],[0,1]],[[12,-41],[0,-1]],[[-3,-51],[-1,1]],[[-40,-69],[1,1]],[[2,-25],[-1,1]],[[1,-23],[1,1]],[[-10,-65],[-1,1]],[[-11,-64],[0,1]],[[6,-17],[-1,1]],[[-12,-66],[0,1]],[[-12,-65],[1,1]],[[-14,-73],[1,1]],[[-13,-64],[1,-1]],[[-14,-70],[1,-1]],[[-18,-62],[0,1]],[[-53,-56],[0,1]],[[-3,-24],[1,-1]],[[11,-39],[1,1]],[[-69,-76],[1,-1]],[[-47,-80],[0,1]],[[-1,-23],[0,-1]],[[-3,-23],[1,1]],[[-2,-22],[1,-1]],[[-13,-63],[-1,1]],[[-1,-23],[1,1]],[[-35,-72],[0,1]],[[-2,-22],[0,1]],[[-46,-77],[1,1]],[[-19,-63],[-1,1]],[[-55,-63],[0,-1]],[[-57,-63],[1,1]],[[-56,-62],[1,-1]],[[-46,-74],[1,-1]],[[-49,-44],[0,1]],[[-25,-76],[0,1]],[[-25,-75],[1,1]],[[-67,-75],[0,-1]],[[-48,-81],[-1,1]],[[-49,-80],[0,1]],[[-25,-75],[-1,1]],[[-26,-77],[-1,1]],[[17,-40],[-1,-1]],[[-26,-78],[-1,-1]],[[-2,-17],[0,-1]],[[-3,-16],[1,-1]],[[-5,-55],[0,-1]],[[-5,-56],[-1,-1]],[[-7,-56],[0,1]],[[-7,-55],[1,1]],[[-6,-54],[1,-1]],[[5,-19],[1,1]],[[-4,-57],[0,-1]],[[-5,-56],[1,-1]],[[19,-64],[0,1]],[[-4,-57],[1,1]],[[17,-63],[1,1]],[[-24,-82],[0,1]],[[-15,-60],[-1,-1]],[[-16,-58],[1,-1]],[[17,-60],[1,-1]],[[-6,-53],[0,-1]],[[-7,-55],[-1,1]],[[-49,-80],[-1,-1]],[[-12,-21],[0,-1]],[[-52,-33],[1,1]],[[19,-59],[1,1]],[[-9,-20],[1,-1]],[[18,-58],[0,1]],[[-49,-83],[-1,1]],[[10,-57],[0,-1]],[[8,-58],[0,1]],[[-9,-19],[1,1]],[[-8,-18],[1,-1]],[[17,-59],[-1,1]],[[-18,-82],[-1,-1]],[[-19,-83],[-1,1]],[[6,-30],[1,-1]],[[-8,-17],[0,-1]],[[-9,-16],[1,-1]],[[-19,-84],[0,1]],[[-21,-36],[-1,-1]],[[-7,-15],[0,-1]],[[-7,-16],[-1,-1]],[[-8,-14],[1,-1]],[[-6,-14],[-1,-1]],[[-28,-25],[-1,1]],[[-6,-17],[-1,1]],[[-51,-84],[0,1]],[[-7,-51],[0,-1]],[[-56,-61],[0,-1]],[[-5,-55],[1,1]],[[-21,-44],[0,1]],[[-21,-43],[1,1]],[[-40,-25],[-1,1]],[[-40,-30],[-1,-1]],[[-41,-31],[-1,1]],[[-33,-15],[1,1]],[[-55,-63],[1,1]],[[-53,-28],[0,1]],[[-21,-43],[-1,1]],[[-42,-26],[0,1]],[[-22,-45],[-1,1]],[[-1,-16],[-1,-1]],[[-34,-78],[-1,-1]],[[-15,-72],[-1,-1]],[[-16,-73],[-1,1]],[[-14,-74],[-1,-1]],[[-16,-74],[0,1]],[[-41,-32],[0,1]],[[-43,-75],[0,-1]],[[-33,-27],[1,1]],[[-33,-80],[0,1]],[[-36,-65],[-1,1]],[[-34,-30],[-1,-1]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment